/* DUPLICATOR MYSQL SCRIPT CREATED ON : March 22, 2016, 12:48 pm */

SET FOREIGN_KEY_CHECKS = 0;

CREATE TABLE `d1_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`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `d1_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`)
) ENGINE=MyISAM AUTO_INCREMENT=47 DEFAULT CHARSET=utf8;

CREATE TABLE `d1_duplicator_packages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) NOT NULL,
  `hash` varchar(50) NOT NULL,
  `status` int(11) NOT NULL,
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `owner` varchar(60) NOT NULL,
  `package` mediumblob NOT NULL,
  PRIMARY KEY (`id`),
  KEY `hash` (`hash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `d1_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;

CREATE TABLE `d1_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=871 DEFAULT CHARSET=utf8;

CREATE TABLE `d1_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`)
) ENGINE=MyISAM AUTO_INCREMENT=3815 DEFAULT CHARSET=utf8;

CREATE TABLE `d1_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`),
  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=2466 DEFAULT CHARSET=utf8;

CREATE TABLE `d1_revslider_css` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `settings` text,
  `hover` text,
  `params` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8;

CREATE TABLE `d1_revslider_layer_animations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `params` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `d1_revslider_settings` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `general` text NOT NULL,
  `params` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `d1_revslider_sliders` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext NOT NULL,
  `alias` tinytext,
  `params` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;

CREATE TABLE `d1_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,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;

CREATE TABLE `d1_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;

CREATE TABLE `d1_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=56 DEFAULT CHARSET=utf8;

CREATE TABLE `d1_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`),
  UNIQUE KEY `slug` (`slug`),
  KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=56 DEFAULT CHARSET=utf8;

CREATE TABLE `d1_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`)
) ENGINE=MyISAM AUTO_INCREMENT=35 DEFAULT CHARSET=utf8;

CREATE TABLE `d1_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;

CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT '',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_duplicator_packages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) NOT NULL,
  `hash` varchar(50) NOT NULL,
  `status` int(11) NOT NULL,
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `owner` varchar(60) NOT NULL,
  `package` mediumblob NOT NULL,
  PRIMARY KEY (`id`),
  KEY `hash` (`hash`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
  `link_rating` int(11) NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_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=1382 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=1143 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(20) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`),
  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=1114 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  UNIQUE KEY `slug` (`slug`),
  KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=32 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_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=2 DEFAULT CHARSET=utf8;


/* INSERT TABLE DATA: d1_comments */
INSERT INTO `d1_comments` VALUES("1", "1", "Mr WordPress", "", "https://wordpress.org/", "", "2014-08-21 17:58:01", "2014-08-21 17:58:01", "Hi, this is a comment.\nTo delete a comment, just log in and view the post&#039;s comments. There you will have the option to edit or delete them.", "0", "1", "", "", "0", "0");
INSERT INTO `d1_comments` VALUES("2", "257", "Michael Zorro", "bringthepixel@gmail.com", "http://www.bringthepixel.com", "78.8.1.107", "2013-06-18 14:20:02", "2013-06-18 14:20:02", "Etiam at malesuada nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Sed non purus venenatis, sagittis sem at, fringilla erat. Nunc a enim quam.", "0", "1", "", "", "0", "1");
INSERT INTO `d1_comments` VALUES("3", "262", "Michael Zorro", "bringthepixel@gmail.com", "http://www.bringthepixel.com", "78.8.1.107", "2013-06-18 14:16:43", "2013-06-18 14:16:43", "Etiam at malesuada nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Sed non purus venenatis, sagittis sem at, fringilla erat. Nunc a enim quam.", "0", "1", "", "", "0", "1");
INSERT INTO `d1_comments` VALUES("4", "1241", "Kevin", "kevin@bringthepixel.com", "", "78.8.1.107", "2013-06-18 18:16:28", "2013-06-18 18:16:28", "Suspendisse vehicula massa at arcu aliquet, eu lacinia nisi pharetra. Etiam vulputate pretium bibendum. Aliquam cursus tortor nec nulla dignissim dictum. Nam ac enim semper, porttitor metus ullamcorper, cursus urna.", "0", "1", "", "", "0", "0");
INSERT INTO `d1_comments` VALUES("5", "1241", "Michael Doe", "bringthepixel@gmail.com", "http://www.bringthepixel.com", "78.8.1.107", "2013-06-18 18:18:19", "2013-06-18 18:18:19", "Nam ac enim semper, porttitor metus ullamcorper, cursus urna. Maecenas eu erat neque. Quisque sit amet justo in nisi consequat aliquam a id dui.", "0", "1", "", "", "4", "1");
INSERT INTO `d1_comments` VALUES("6", "1241", "Kevin", "kevin@bringthepixel.com", "http://www.bringthepixel.com", "78.8.1.107", "2013-06-18 18:23:28", "2013-06-18 18:23:28", "Curabitur erat nunc, euismod eu mi eget, fermentum euismod mi. Pellentesque eleifend venenatis risus id pretium. Vestibulum at tellus et nisl semper congue.", "0", "1", "", "", "0", "0");
INSERT INTO `d1_comments` VALUES("7", "17", "Michael Doe", "bringthepixel@gmail.com", "http://www.bringthepixel.com", "78.8.1.107", "2013-06-18 18:21:17", "2013-06-18 18:21:17", "Curabitur erat nunc, euismod eu mi eget, fermentum euismod mi. Pellentesque eleifend venenatis risus id pretium. Vestibulum at tellus et nisl semper congue. Mauris vel magna eu tortor aliquet auctor quis et tellus. Quisque venenatis risus non pulvinar sollicitudin. \n\nFusce semper nisi non nunc bibendum venenatis. Quisque pulvinar massa nisi. Curabitur porta tellus vitae sem dictum bibendum. Suspendisse potenti. Donec mollis commodo lacinia. Suspendisse potenti. Sed mi elit, ornare quis justo eget, vulputate posuere sem.", "0", "1", "", "", "0", "1");
INSERT INTO `d1_comments` VALUES("8", "17", "Kevin Smith", "kevin@bringthepixel.com", "http://www.bringthepixel.com", "78.8.1.107", "2013-06-18 18:26:51", "2013-06-18 18:26:51", "Curabitur erat nunc, euismod eu mi eget, fermentum euismod mi. Pellentesque eleifend venenatis risus id pretium. Vestibulum at tellus et nisl semper.", "0", "0", "", "", "7", "0");
INSERT INTO `d1_comments` VALUES("9", "442", "Michael Doe", "bringthepixel@gmail.com", "http://www.bringthepixel.com", "78.8.1.107", "2013-06-18 18:20:30", "2013-06-18 18:20:30", "Maecenas eu erat neque. Quisque sit amet justo in nisi consequat aliquam a id dui. Nullam sollicitudin tincidunt dignissim. Mauris non nisi purus. Morbi ultrices tortor blandit, malesuada erat sit amet, interdum libero. Sed bibendum pellentesque justo, nec ullamcorper mi viverra quis. Sed nec suscipit felis.", "0", "1", "", "", "0", "1");
INSERT INTO `d1_comments` VALUES("10", "442", "Kevin Smith", "kevin@bringthepixel.com", "http://www.bringthepixel.com", "78.8.1.107", "2013-06-18 18:26:18", "2013-06-18 18:26:18", "Fermentum euismod mi. Pellentesque eleifend venenatis risus id pretium. Vestibulum at tellus et nisl semper congue.", "0", "0", "", "", "9", "0");
INSERT INTO `d1_comments` VALUES("11", "443", "Michael Doe", "bringthepixel@gmail.com", "http://www.bringthepixel.com", "78.8.1.107", "2013-06-18 18:19:47", "2013-06-18 18:19:47", "Nullam sollicitudin tincidunt dignissim. Mauris non nisi purus. Morbi ultrices tortor blandit, malesuada erat sit amet, interdum libero. Sed bibendum pellentesque justo, nec ullamcorper mi viverra quis. Sed nec suscipit felis.", "0", "1", "", "", "0", "1");
INSERT INTO `d1_comments` VALUES("12", "443", "Michael Doe", "bringthepixel@gmail.com", "http://www.bringthepixel.com", "78.8.1.107", "2013-06-18 18:20:01", "2013-06-18 18:20:01", "Quisque sit amet justo in nisi consequat aliquam a id dui. Nullam sollicitudin tincidunt dignissim. Mauris non nisi purus. Morbi ultrices tortor blandit, malesuada erat sit amet, interdum libero. Sed bibendum pellentesque justo, nec ullamcorper mi viverra quis. Sed nec suscipit felis.", "0", "1", "", "", "0", "1");
INSERT INTO `d1_comments` VALUES("13", "443", "Kevin", "kevin@bringthepixel.com", "", "78.8.1.107", "2013-06-18 18:25:02", "2013-06-18 18:25:02", "Euismod eu mi eget, fermentum euismod mi. Pellentesque eleifend venenatis risus id pretium. Vestibulum at tellus et nisl semper congue.", "0", "1", "", "", "11", "0");
INSERT INTO `d1_comments` VALUES("14", "443", "Kevin", "kevin@bringthepixel.com", "", "78.8.1.107", "2013-06-18 18:25:44", "2013-06-18 18:25:44", "Mi eget, fermentum euismod mi. Pellentesque eleifend venenatis risus id pretium. Vestibulum at tellus et nisl semper congue.", "0", "1", "", "", "0", "0");
INSERT INTO `d1_comments` VALUES("15", "450", "Michael Zorro", "bringthepixel@gmail.com", "http://www.bringthepixel.com", "192.168.6.1", "2013-05-02 07:42:39", "2013-05-02 07:42:39", "Phasellus tempor porttitor enim, ut iaculis nisi sodales id. Morbi lectus massa, pharetra at consequat sed, congue eu dui. Donec lacinia, magna vitae cursus blandit, felis urna sollicitudin eros, sit amet aliquam dolor tortor et enim.", "0", "1", "", "", "0", "1");
INSERT INTO `d1_comments` VALUES("16", "450", "Michael Zorro", "bringthepixel@gmail.com", "http://www.bringthepixel.com", "192.168.6.1", "2013-05-02 07:42:57", "2013-05-02 07:42:57", "Praesent sodales rhoncus pulvinar. Proin commodo odio ut nisl condimentum porta. Nunc odio mi, posuere eu fermentum vitae, mattis eget libero.", "0", "1", "", "", "0", "1");
INSERT INTO `d1_comments` VALUES("17", "450", "Michael Zorro", "bringthepixel@gmail.com", "http://www.bringthepixel.com", "192.168.6.1", "2013-05-08 07:19:52", "2013-05-08 07:19:52", "Aliquam bibendum aliquet nisl, ut pretium augue lobortis quis. Aenean euismod cursus dignissim. Sed nec tortor eget felis vulputate scelerisque sit amet sit amet enim. Donec et magna mi. Nullam elementum mauris in libero ultricies a porttitor sapien imperdiet.", "0", "1", "", "", "15", "1");
INSERT INTO `d1_comments` VALUES("18", "450", "admin", "luke.wesolowski@gmail.com", "", "192.168.6.1", "2013-05-08 07:33:12", "2013-05-08 07:33:12", "Integer libero mi, rutrum sed elementum sit amet, consectetur quis urna.", "0", "1", "", "", "15", "1");
INSERT INTO `d1_comments` VALUES("19", "450", "Michael Zorro", "bringthepixel@gmail.com", "http://www.bringthepixel.com", "192.168.6.1", "2013-05-08 07:53:37", "2013-05-08 07:53:37", "Elementum sit amet, consectetur quis urna.", "0", "1", "", "", "0", "1");
INSERT INTO `d1_comments` VALUES("20", "1867", "Michael Doe", "bringthepixel@gmail.com", "http://www.bringthepixel.com", "78.8.1.107", "2013-06-18 18:19:26", "2013-06-18 18:19:26", "Maecenas eu erat neque. Quisque sit amet justo in nisi consequat aliquam a id dui. Nullam sollicitudin tincidunt dignissim. Mauris non nisi purus. Morbi ultrices tortor blandit, malesuada erat sit amet, interdum libero. Sed bibendum pellentesque justo, nec ullamcorper mi viverra quis. Sed nec suscipit felis.", "0", "1", "", "", "0", "1");
INSERT INTO `d1_comments` VALUES("21", "1867", "Kevin", "kevin@bringthepixel.com", "", "78.8.1.107", "2013-06-18 18:24:35", "2013-06-18 18:24:35", "Nunc, euismod eu mi eget, fermentum euismod mi. Pellentesque eleifend venenatis risus id pretium. Vestibulum at tellus et nisl semper congue.", "0", "1", "", "", "20", "0");
INSERT INTO `d1_comments` VALUES("22", "1868", "Michael Doe", "bringthepixel@gmail.com", "http://www.bringthepixel.com", "78.8.1.107", "2013-06-18 18:18:34", "2013-06-18 18:18:34", "Nam ac enim semper, porttitor metus ullamcorper, cursus urna. Maecenas eu erat neque. Quisque sit amet justo in nisi consequat aliquam a id dui.", "0", "1", "", "", "0", "1");
INSERT INTO `d1_comments` VALUES("23", "1868", "Michael Doe", "bringthepixel@gmail.com", "http://www.bringthepixel.com", "78.8.1.107", "2013-06-18 18:19:04", "2013-06-18 18:19:04", "Maecenas eu erat neque. Quisque sit amet justo in nisi consequat aliquam a id dui. Nullam sollicitudin tincidunt dignissim. Mauris non nisi purus. Morbi ultrices tortor blandit, malesuada erat sit amet, interdum libero. Sed bibendum pellentesque justo, nec ullamcorper mi viverra quis. Sed nec suscipit felis.", "0", "1", "", "", "0", "1");
INSERT INTO `d1_comments` VALUES("24", "1868", "Kevin", "kevin@bringthepixel.com", "", "78.8.1.107", "2013-06-18 18:23:48", "2013-06-18 18:23:48", "Euismod eu mi eget, fermentum euismod mi. Pellentesque eleifend venenatis risus id pretium. Vestibulum at tellus et nisl semper congue.", "0", "1", "", "", "0", "0");
INSERT INTO `d1_comments` VALUES("25", "1868", "Kevin", "kevin@bringthepixel.com", "", "78.8.1.107", "2013-06-18 18:24:12", "2013-06-18 18:24:12", "Erat nunc, euismod eu mi eget, fermentum euismod mi. Pellentesque eleifend venenatis risus id pretium. Vestibulum at tellus et nisl semper congue.", "0", "1", "", "", "22", "0");

/* INSERT TABLE DATA: d1_options */
INSERT INTO `d1_options` VALUES("1", "siteurl", "http://hrd.softons.cu.cc", "yes");
INSERT INTO `d1_options` VALUES("2", "blogname", "Priyaa Construction", "yes");
INSERT INTO `d1_options` VALUES("3", "blogdescription", "Hosur", "yes");
INSERT INTO `d1_options` VALUES("4", "users_can_register", "0", "yes");
INSERT INTO `d1_options` VALUES("5", "admin_email", "info@softons.in", "yes");
INSERT INTO `d1_options` VALUES("6", "start_of_week", "1", "yes");
INSERT INTO `d1_options` VALUES("7", "use_balanceTags", "0", "yes");
INSERT INTO `d1_options` VALUES("8", "use_smilies", "1", "yes");
INSERT INTO `d1_options` VALUES("9", "require_name_email", "1", "yes");
INSERT INTO `d1_options` VALUES("10", "comments_notify", "1", "yes");
INSERT INTO `d1_options` VALUES("11", "posts_per_rss", "10", "yes");
INSERT INTO `d1_options` VALUES("12", "rss_use_excerpt", "0", "yes");
INSERT INTO `d1_options` VALUES("13", "mailserver_url", "mail.example.com", "yes");
INSERT INTO `d1_options` VALUES("14", "mailserver_login", "login@example.com", "yes");
INSERT INTO `d1_options` VALUES("15", "mailserver_pass", "password", "yes");
INSERT INTO `d1_options` VALUES("16", "mailserver_port", "110", "yes");
INSERT INTO `d1_options` VALUES("17", "default_category", "1", "yes");
INSERT INTO `d1_options` VALUES("18", "default_comment_status", "open", "yes");
INSERT INTO `d1_options` VALUES("19", "default_ping_status", "open", "yes");
INSERT INTO `d1_options` VALUES("20", "default_pingback_flag", "1", "yes");
INSERT INTO `d1_options` VALUES("21", "posts_per_page", "10", "yes");
INSERT INTO `d1_options` VALUES("22", "date_format", "F j, Y", "yes");
INSERT INTO `d1_options` VALUES("23", "time_format", "g:i a", "yes");
INSERT INTO `d1_options` VALUES("24", "links_updated_date_format", "F j, Y g:i a", "yes");
INSERT INTO `d1_options` VALUES("25", "comment_moderation", "0", "yes");
INSERT INTO `d1_options` VALUES("26", "moderation_notify", "1", "yes");
INSERT INTO `d1_options` VALUES("27", "permalink_structure", "/%postname%/", "yes");
INSERT INTO `d1_options` VALUES("28", "gzipcompression", "0", "yes");
INSERT INTO `d1_options` VALUES("29", "hack_file", "0", "yes");
INSERT INTO `d1_options` VALUES("30", "blog_charset", "UTF-8", "yes");
INSERT INTO `d1_options` VALUES("31", "moderation_keys", "", "no");
INSERT INTO `d1_options` VALUES("32", "active_plugins", "a:9:{i:0;s:25:\"adminimize/adminimize.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:25:\"duplicator/duplicator.php\";i:3;s:21:\"g1-gmaps/g1-gmaps.php\";i:4;s:35:\"g1-page-builder/g1-page-builder.php\";i:5;s:35:\"g1-social-icons/g1-social-icons.php\";i:6;s:23:\"revslider/revslider.php\";i:7;s:32:\"white-label-cms/wlcms-plugin.php\";i:8;s:41:\"wordpress-importer/wordpress-importer.php\";}", "yes");
INSERT INTO `d1_options` VALUES("33", "home", "http://hrd.softons.cu.cc", "yes");
INSERT INTO `d1_options` VALUES("34", "category_base", "", "yes");
INSERT INTO `d1_options` VALUES("35", "ping_sites", "http://rpc.pingomatic.com/", "yes");
INSERT INTO `d1_options` VALUES("36", "advanced_edit", "0", "yes");
INSERT INTO `d1_options` VALUES("37", "comment_max_links", "2", "yes");
INSERT INTO `d1_options` VALUES("38", "gmt_offset", "0", "yes");
INSERT INTO `d1_options` VALUES("39", "default_email_category", "1", "yes");
INSERT INTO `d1_options` VALUES("40", "recently_edited", "a:3:{i:0;s:77:\"/home/softonscu/public_html/hrd/wp-content/themes/Softons Design-01/style.css\";i:2;s:74:\"/home/softonscu/public_html/hrd/wp-content/themes/twentyfourteen/style.css\";i:3;s:0:\"\";}", "no");
INSERT INTO `d1_options` VALUES("41", "template", "Softons Design-01", "yes");
INSERT INTO `d1_options` VALUES("42", "stylesheet", "Softons Design-01", "yes");
INSERT INTO `d1_options` VALUES("43", "comment_whitelist", "1", "yes");
INSERT INTO `d1_options` VALUES("44", "blacklist_keys", "", "no");
INSERT INTO `d1_options` VALUES("45", "comment_registration", "0", "yes");
INSERT INTO `d1_options` VALUES("46", "html_type", "text/html", "yes");
INSERT INTO `d1_options` VALUES("47", "use_trackback", "0", "yes");
INSERT INTO `d1_options` VALUES("48", "default_role", "subscriber", "yes");
INSERT INTO `d1_options` VALUES("49", "db_version", "27916", "yes");
INSERT INTO `d1_options` VALUES("50", "uploads_use_yearmonth_folders", "1", "yes");
INSERT INTO `d1_options` VALUES("51", "upload_path", "", "yes");
INSERT INTO `d1_options` VALUES("52", "blog_public", "1", "yes");
INSERT INTO `d1_options` VALUES("53", "default_link_category", "2", "yes");
INSERT INTO `d1_options` VALUES("54", "show_on_front", "page", "yes");
INSERT INTO `d1_options` VALUES("55", "tag_base", "", "yes");
INSERT INTO `d1_options` VALUES("56", "show_avatars", "1", "yes");
INSERT INTO `d1_options` VALUES("57", "avatar_rating", "G", "yes");
INSERT INTO `d1_options` VALUES("58", "upload_url_path", "", "yes");
INSERT INTO `d1_options` VALUES("59", "thumbnail_size_w", "150", "yes");
INSERT INTO `d1_options` VALUES("60", "thumbnail_size_h", "150", "yes");
INSERT INTO `d1_options` VALUES("61", "thumbnail_crop", "1", "yes");
INSERT INTO `d1_options` VALUES("62", "medium_size_w", "300", "yes");
INSERT INTO `d1_options` VALUES("63", "medium_size_h", "300", "yes");
INSERT INTO `d1_options` VALUES("64", "avatar_default", "mystery", "yes");
INSERT INTO `d1_options` VALUES("65", "large_size_w", "1024", "yes");
INSERT INTO `d1_options` VALUES("66", "large_size_h", "1024", "yes");
INSERT INTO `d1_options` VALUES("67", "image_default_link_type", "file", "yes");
INSERT INTO `d1_options` VALUES("68", "image_default_size", "", "yes");
INSERT INTO `d1_options` VALUES("69", "image_default_align", "", "yes");
INSERT INTO `d1_options` VALUES("70", "close_comments_for_old_posts", "0", "yes");
INSERT INTO `d1_options` VALUES("71", "close_comments_days_old", "14", "yes");
INSERT INTO `d1_options` VALUES("72", "thread_comments", "1", "yes");
INSERT INTO `d1_options` VALUES("73", "thread_comments_depth", "5", "yes");
INSERT INTO `d1_options` VALUES("74", "page_comments", "0", "yes");
INSERT INTO `d1_options` VALUES("75", "comments_per_page", "50", "yes");
INSERT INTO `d1_options` VALUES("76", "default_comments_page", "newest", "yes");
INSERT INTO `d1_options` VALUES("77", "comment_order", "asc", "yes");
INSERT INTO `d1_options` VALUES("78", "sticky_posts", "a:1:{i:0;i:1241;}", "yes");
INSERT INTO `d1_options` VALUES("79", "widget_categories", "a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("80", "widget_text", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("81", "widget_rss", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("82", "uninstall_plugins", "a:4:{s:21:\"g1-gmaps/g1-gmaps.php\";a:2:{i:0;s:8:\"G1_GMaps\";i:1;s:9:\"uninstall\";}s:35:\"g1-social-icons/g1-social-icons.php\";a:2:{i:0;s:15:\"G1_Social_Icons\";i:1;s:9:\"uninstall\";}s:35:\"g1-page-builder/g1-page-builder.php\";a:2:{i:0;s:15:\"G1_Page_Builder\";i:1;s:9:\"uninstall\";}s:25:\"adminimize/adminimize.php\";s:24:\"_mw_adminimize_deinstall\";}", "no");
INSERT INTO `d1_options` VALUES("83", "timezone_string", "", "yes");
INSERT INTO `d1_options` VALUES("84", "page_for_posts", "0", "yes");
INSERT INTO `d1_options` VALUES("85", "page_on_front", "124", "yes");
INSERT INTO `d1_options` VALUES("86", "default_post_format", "0", "yes");
INSERT INTO `d1_options` VALUES("87", "link_manager_enabled", "0", "yes");
INSERT INTO `d1_options` VALUES("88", "initial_db_version", "27916", "yes");
INSERT INTO `d1_options` VALUES("89", "d1_user_roles", "a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{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:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}", "yes");
INSERT INTO `d1_options` VALUES("90", "widget_search", "a:2:{i:6;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("91", "widget_recent-posts", "a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("92", "widget_recent-comments", "a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("93", "widget_archives", "a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("94", "widget_meta", "a:3:{i:2;a:1:{s:5:\"title\";s:0:\"\";}i:4;a:1:{s:5:\"title\";s:5:\"Login\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("95", "sidebars_widgets", "a:13:{s:19:\"wp_inactive_widgets\";a:0:{}s:7:\"primary\";a:5:{i:0;s:14:\"recent-posts-2\";i:1;s:17:\"recent-comments-2\";i:2;s:10:\"archives-2\";i:3;s:12:\"categories-2\";i:4;s:6:\"meta-2\";}s:11:\"preheader-1\";a:0:{}s:11:\"preheader-2\";a:0:{}s:11:\"preheader-3\";a:1:{i:0;s:6:\"meta-4\";}s:11:\"preheader-4\";a:1:{i:0;s:8:\"search-6\";}s:11:\"preheader-5\";a:0:{}s:11:\"prefooter-1\";a:0:{}s:11:\"prefooter-2\";a:0:{}s:11:\"prefooter-3\";a:0:{}s:11:\"prefooter-4\";a:0:{}s:11:\"prefooter-5\";a:0:{}s:13:\"array_version\";i:3;}", "yes");
INSERT INTO `d1_options` VALUES("96", "cron", "a:6:{i:1426787881;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:1426787898;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:1426787914;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1426829427;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:2524651218;a:1:{s:19:\"publish_future_post\";a:1:{s:32:\"53e45760b4285163a94322f2b432f7d3\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1153;}}}}s:7:\"version\";i:2;}", "yes");
INSERT INTO `d1_options` VALUES("131", "current_theme", "Softons Design - 01", "yes");
INSERT INTO `d1_options` VALUES("108", "optionsframework", "a:2:{s:2:\"id\";s:15:\"d5corporatelite\";s:12:\"knownoptions\";a:1:{i:0;s:15:\"d5corporatelite\";}}", "yes");
INSERT INTO `d1_options` VALUES("109", "d5corporatelite", "a:20:{s:12:\"banner-image\";s:96:\"http://hrd.softons.cu.cc/wp-content/themes/d5-corporate-lite/images/slide-image/slide-image1.jpg\";s:12:\"heading_text\";s:87:\"World class and industry standard IT services are our passion. We build your ideas True\";s:16:\"bottom-quotation\";s:196:\"All the developers of D5 Creation have come from the disadvantaged part or group of the society. All have established themselves after a long and hard struggle in their life ----- D5 Creation Team\";s:5:\"lpost\";b:0;s:15:\"featured-image1\";s:87:\"http://hrd.softons.cu.cc/wp-content/themes/d5-corporate-lite/images/featured-image1.jpg\";s:15:\"featured-title1\";s:34:\"CORPORATE Theme for Small Business\";s:21:\"featured-description1\";s:225:\"The Customizable Background and other options of CORPORATE will give the WordPress Driven Site an attractive look.  CORPORATE is super elegant and Professional Responsive Theme which will create the business widely expressed.\";s:14:\"featured-link1\";s:1:\"#\";s:15:\"featured-image2\";s:87:\"http://hrd.softons.cu.cc/wp-content/themes/d5-corporate-lite/images/featured-image2.jpg\";s:15:\"featured-title2\";s:34:\"CORPORATE Theme for Small Business\";s:21:\"featured-description2\";s:225:\"The Customizable Background and other options of CORPORATE will give the WordPress Driven Site an attractive look.  CORPORATE is super elegant and Professional Responsive Theme which will create the business widely expressed.\";s:14:\"featured-link2\";s:1:\"#\";s:15:\"featured-image3\";s:87:\"http://hrd.softons.cu.cc/wp-content/themes/d5-corporate-lite/images/featured-image3.jpg\";s:15:\"featured-title3\";s:34:\"CORPORATE Theme for Small Business\";s:21:\"featured-description3\";s:225:\"The Customizable Background and other options of CORPORATE will give the WordPress Driven Site an attractive look.  CORPORATE is super elegant and Professional Responsive Theme which will create the business widely expressed.\";s:14:\"featured-link3\";s:1:\"#\";s:15:\"featured-image4\";s:87:\"http://hrd.softons.cu.cc/wp-content/themes/d5-corporate-lite/images/featured-image4.jpg\";s:15:\"featured-title4\";s:34:\"CORPORATE Theme for Small Business\";s:21:\"featured-description4\";s:225:\"The Customizable Background and other options of CORPORATE will give the WordPress Driven Site an attractive look.  CORPORATE is super elegant and Professional Responsive Theme which will create the business widely expressed.\";s:14:\"featured-link4\";s:1:\"#\";}", "yes");
INSERT INTO `d1_options` VALUES("863", "_site_transient_timeout_theme_roots", "1426767748", "yes");
INSERT INTO `d1_options` VALUES("864", "_site_transient_theme_roots", "a:5:{s:17:\"Softons Design-01\";s:7:\"/themes\";s:17:\"d5-corporate-lite\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";s:12:\"twentytwelve\";s:7:\"/themes\";}", "yes");
INSERT INTO `d1_options` VALUES("868", "_site_transient_update_core", "O:8:\"stdClass\":4:{s:7:\"updates\";a:4:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.1.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.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.1.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.1.1\";s:7:\"version\";s:5:\"4.1.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:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.1.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.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.1.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.1.1\";s:7:\"version\";s:5:\"4.1.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:13:\"support_email\";s:26:\"updatehelp41@wordpress.org\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-4.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-4.1.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-4.1-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-4.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:3:\"4.1\";s:7:\"version\";s:3:\"4.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:13:\"support_email\";s:26:\"updatehelp41@wordpress.org\";}i:3;O:8:\"stdClass\":12:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.0.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.0.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.0.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.0.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.0.1\";s:7:\"version\";s:5:\"4.0.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:\"notify_email\";s:1:\"1\";s:13:\"support_email\";s:26:\"updatehelp41@wordpress.org\";}}s:12:\"last_checked\";i:1426765951;s:15:\"version_checked\";s:5:\"3.9.3\";s:12:\"translations\";a:0:{}}", "yes");
INSERT INTO `d1_options` VALUES("869", "_site_transient_update_themes", "O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1426765951;s:7:\"checked\";a:5:{s:17:\"Softons Design-01\";s:5:\"3.4.1\";s:17:\"d5-corporate-lite\";s:5:\"1.5.7\";s:14:\"twentyfourteen\";s:3:\"1.1\";s:14:\"twentythirteen\";s:3:\"1.2\";s:12:\"twentytwelve\";s:3:\"1.4\";}s:8:\"response\";a:4:{s:17:\"d5-corporate-lite\";a:4:{s:5:\"theme\";s:17:\"d5-corporate-lite\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:47:\"https://wordpress.org/themes/d5-corporate-lite/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/d5-corporate-lite.1.7.zip\";}s:14:\"twentyfourteen\";a:4:{s:5:\"theme\";s:14:\"twentyfourteen\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentyfourteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentyfourteen.1.3.zip\";}s:14:\"twentythirteen\";a:4:{s:5:\"theme\";s:14:\"twentythirteen\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentythirteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentythirteen.1.4.zip\";}s:12:\"twentytwelve\";a:4:{s:5:\"theme\";s:12:\"twentytwelve\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwelve/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwelve.1.6.zip\";}}s:12:\"translations\";a:0:{}}", "yes");
INSERT INTO `d1_options` VALUES("867", "auto_core_update_notified", "a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:15:\"info@softons.in\";s:7:\"version\";s:5:\"3.9.3\";s:9:\"timestamp\";i:1426765951;}", "yes");
INSERT INTO `d1_options` VALUES("870", "_site_transient_update_plugins", "O:8:\"stdClass\":3:{s:12:\"last_checked\";i:1426765951;s:8:\"response\";a:2:{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.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.3.1.1.zip\";}s:25:\"duplicator/duplicator.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"22600\";s:4:\"slug\";s:10:\"duplicator\";s:6:\"plugin\";s:25:\"duplicator/duplicator.php\";s:11:\"new_version\";s:6:\"0.5.12\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/duplicator/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/duplicator.0.5.12.zip\";}}s:12:\"translations\";a:0:{}}", "yes");
INSERT INTO `d1_options` VALUES("462", "wlcms_o_hide_wp_adminbar", "0", "yes");
INSERT INTO `d1_options` VALUES("463", "wlcms_o_adminbar_custom_logo", "", "yes");
INSERT INTO `d1_options` VALUES("464", "wlcms_o_header_custom_logo", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Mobile-logo.png", "yes");
INSERT INTO `d1_options` VALUES("465", "wlcms_o_dashboard_override", "Dashboard", "yes");
INSERT INTO `d1_options` VALUES("466", "wlcms_o_footer_custom_logo", "", "yes");
INSERT INTO `d1_options` VALUES("467", "wlcms_o_developer_url", "", "yes");
INSERT INTO `d1_options` VALUES("468", "wlcms_o_developer_name", "", "yes");
INSERT INTO `d1_options` VALUES("469", "wlcms_o_hide_wpversion", "0", "yes");
INSERT INTO `d1_options` VALUES("470", "wlcms_o_loginbg_white", "0", "yes");
INSERT INTO `d1_options` VALUES("471", "wlcms_o_login_custom_logo", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Mobile-logo.png", "yes");
INSERT INTO `d1_options` VALUES("472", "wlcms_o_login_bg_css", "", "yes");
INSERT INTO `d1_options` VALUES("473", "wlcms_o_admin_page_title", "", "yes");
INSERT INTO `d1_options` VALUES("474", "wlcms_o_dashboard_remove_right_now", "0", "yes");
INSERT INTO `d1_options` VALUES("475", "wlcms_o_dashboard_remove_recent_comments", "1", "yes");
INSERT INTO `d1_options` VALUES("476", "wlcms_o_dashboard_others", "1", "yes");
INSERT INTO `d1_options` VALUES("477", "wlcms_o_dashboard_admin", "1", "yes");
INSERT INTO `d1_options` VALUES("478", "wlcms_o_dashboard_border", "1", "yes");
INSERT INTO `d1_options` VALUES("479", "wlcms_o_show_welcome", "0", "yes");
INSERT INTO `d1_options` VALUES("480", "wlcms_o_welcome_visible_to", "editor", "yes");
INSERT INTO `d1_options` VALUES("481", "wlcms_o_welcome_title", "Welcome To Your New Website", "yes");
INSERT INTO `d1_options` VALUES("482", "wlcms_o_welcome_text", "", "yes");
INSERT INTO `d1_options` VALUES("483", "wlcms_o_welcome_visible_to1", "0", "yes");
INSERT INTO `d1_options` VALUES("484", "wlcms_o_welcome_title1", "", "yes");
INSERT INTO `d1_options` VALUES("485", "wlcms_o_welcome_text1", "", "yes");
INSERT INTO `d1_options` VALUES("486", "wlcms_o_show_rss_widget", "0", "yes");
INSERT INTO `d1_options` VALUES("487", "wlcms_o_rss_title", "", "yes");
INSERT INTO `d1_options` VALUES("488", "wlcms_o_rss_logo", "", "yes");
INSERT INTO `d1_options` VALUES("489", "wlcms_o_rss_value", "", "yes");
INSERT INTO `d1_options` VALUES("490", "wlcms_o_rss_num_items", "2", "yes");
INSERT INTO `d1_options` VALUES("491", "wlcms_o_rss_show_intro", "yes", "yes");
INSERT INTO `d1_options` VALUES("492", "wlcms_o_rss_intro_html", "", "yes");
INSERT INTO `d1_options` VALUES("493", "wlcms_o_enable_login_redirect", "1", "yes");
INSERT INTO `d1_options` VALUES("494", "wlcms_o_dashboard_remove_nag_update", "1", "yes");
INSERT INTO `d1_options` VALUES("495", "wlcms_o_dashboard_remove_help_box", "0", "yes");
INSERT INTO `d1_options` VALUES("496", "wlcms_o_dashboard_remove_screen_options", "0", "yes");
INSERT INTO `d1_options` VALUES("513", "wlcms_o_custom_css", "", "yes");
INSERT INTO `d1_options` VALUES("514", "wlcms_o_welcome_stylesheet", "", "yes");
INSERT INTO `d1_options` VALUES("540", "wpcf7", "a:1:{s:7:\"version\";s:5:\"4.0.1\";}", "yes");
INSERT INTO `d1_options` VALUES("523", "wlcms_o_editor_template_access", "0", "yes");
INSERT INTO `d1_options` VALUES("524", "wlcms_o_subtemplate_hide_5", "true", "yes");
INSERT INTO `d1_options` VALUES("525", "wlcms_o_subtemplate_hide_6", "true", "yes");
INSERT INTO `d1_options` VALUES("526", "wlcms_o_subtemplate_hide_7", "true", "yes");
INSERT INTO `d1_options` VALUES("527", "wlcms_o_subtemplate_hide_10", "true", "yes");
INSERT INTO `d1_options` VALUES("528", "wlcms_o_subtemplate_hide_11", "true", "yes");
INSERT INTO `d1_options` VALUES("264", "duplicator_version_plugin", "0.5.6", "yes");
INSERT INTO `d1_options` VALUES("129", "can_compress_scripts", "1", "yes");
INSERT INTO `d1_options` VALUES("132", "theme_mods_twentyfourteen", "a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1408644283;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}", "yes");
INSERT INTO `d1_options` VALUES("133", "theme_switched", "", "yes");
INSERT INTO `d1_options` VALUES("141", "g1_gmaps_migrated_map_id", "4", "yes");
INSERT INTO `d1_options` VALUES("136", "theme_mods_Softons Design-01", "a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:3:{s:11:\"primary_nav\";i:55;s:13:\"secondary_nav\";i:45;s:10:\"footer_nav\";i:55;}}", "yes");
INSERT INTO `d1_options` VALUES("137", "shop_catalog_image_size", "a:3:{s:5:\"width\";s:3:\"239\";s:6:\"height\";s:3:\"319\";s:4:\"crop\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("138", "shop_single_image_size", "a:3:{s:5:\"width\";s:3:\"482\";s:6:\"height\";s:3:\"643\";s:4:\"crop\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("139", "shop_thumbnail_image_size", "a:3:{s:5:\"width\";s:2:\"55\";s:6:\"height\";s:2:\"73\";s:4:\"crop\";i:0;}", "yes");
INSERT INTO `d1_options` VALUES("140", "g1_theme03", "a:357:{s:8:\"last_tab\";s:16:\"general_branding\";s:19:\"general_footer_text\";s:38:\"Ã‚Â© 2014 by Softons Webdesign Solutions\";s:25:\"general_responsive_design\";s:8:\"standard\";s:16:\"general_helpmode\";s:8:\"standard\";s:21:\"general_scroll_to_top\";s:8:\"standard\";s:13:\"branding_logo\";s:67:\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/350x804.png\";s:19:\"branding_logo_width\";s:0:\"\";s:20:\"branding_logo_height\";s:0:\"\";s:18:\"branding_logo_hdpi\";s:0:\"\";s:20:\"branding_logo_mobile\";s:72:\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Mobile-logo2.png\";s:26:\"branding_logo_mobile_width\";s:0:\"\";s:27:\"branding_logo_mobile_height\";s:0:\"\";s:25:\"branding_logo_mobile_hdpi\";s:0:\"\";s:16:\"branding_favicon\";s:67:\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/favicon.png\";s:25:\"branding_apple_touch_icon\";s:0:\"\";s:16:\"style_ui_corners\";a:4:{s:2:\"tl\";s:8:\"squircle\";s:2:\"tr\";s:8:\"squircle\";s:2:\"br\";s:8:\"squircle\";s:2:\"bl\";s:8:\"squircle\";}s:16:\"style_background\";s:7:\"#597600\";s:23:\"style_background_switch\";s:8:\"standard\";s:22:\"style_background_image\";s:0:\"\";s:27:\"style_background_image_hdpi\";s:0:\"\";s:23:\"style_background_repeat\";s:9:\"no-repeat\";s:25:\"style_background_position\";s:8:\"left top\";s:27:\"style_background_attachment\";s:6:\"scroll\";s:23:\"style_background_scroll\";s:4:\"none\";s:20:\"style_top_background\";s:0:\"\";s:27:\"style_top_background_switch\";s:4:\"none\";s:26:\"style_top_background_image\";s:0:\"\";s:31:\"style_top_background_image_hdpi\";s:0:\"\";s:27:\"style_top_background_repeat\";s:9:\"no-repeat\";s:29:\"style_top_background_position\";s:8:\"left top\";s:31:\"style_top_background_attachment\";s:6:\"scroll\";s:27:\"style_top_background_scroll\";s:4:\"none\";s:24:\"style_fonts_regular_type\";s:6:\"google\";s:31:\"style_fonts_regular_system_font\";s:0:\"\";s:33:\"style_fonts_regular_fontface_font\";s:0:\"\";s:31:\"style_fonts_regular_google_font\";s:17:\"Open+Sans:regular\";s:24:\"style_fonts_regular_size\";s:1:\"s\";s:21:\"style_fonts_meta_type\";s:6:\"google\";s:28:\"style_fonts_meta_system_font\";s:0:\"\";s:30:\"style_fonts_meta_fontface_font\";s:0:\"\";s:28:\"style_fonts_meta_google_font\";s:9:\"Open+Sans\";s:26:\"style_fonts_important_type\";s:6:\"google\";s:33:\"style_fonts_important_system_font\";s:0:\"\";s:35:\"style_fonts_important_fontface_font\";s:0:\"\";s:33:\"style_fonts_important_google_font\";s:13:\"Open+Sans:300\";s:26:\"style_fonts_important_size\";s:1:\"m\";s:28:\"style_fonts_primary_nav_type\";s:6:\"google\";s:35:\"style_fonts_primary_nav_system_font\";s:0:\"\";s:37:\"style_fonts_primary_nav_fontface_font\";s:0:\"\";s:35:\"style_fonts_primary_nav_google_font\";s:9:\"Open+Sans\";s:28:\"style_fonts_primary_nav_size\";s:2:\"15\";s:35:\"style_fonts_primary_nav_padding_top\";s:1:\"3\";s:38:\"style_fonts_primary_nav_padding_bottom\";s:1:\"7\";s:17:\"image_size_g1_max\";a:2:{s:6:\"height\";s:0:\"\";s:4:\"crop\";s:4:\"none\";}s:23:\"image_size_g1_two_third\";a:2:{s:6:\"height\";s:0:\"\";s:4:\"crop\";s:4:\"none\";}s:22:\"image_size_g1_one_half\";a:2:{s:6:\"height\";s:0:\"\";s:4:\"crop\";s:8:\"standard\";}s:23:\"image_size_g1_one_third\";a:2:{s:6:\"height\";s:0:\"\";s:4:\"crop\";s:8:\"standard\";}s:32:\"image_size_g1_one_third_flexible\";a:2:{s:6:\"height\";s:0:\"\";s:4:\"crop\";s:4:\"none\";}s:24:\"image_size_g1_one_fourth\";a:2:{s:6:\"height\";s:0:\"\";s:4:\"crop\";s:8:\"standard\";}s:33:\"image_size_g1_one_fourth_flexible\";a:2:{s:6:\"height\";s:0:\"\";s:4:\"crop\";s:4:\"none\";}s:25:\"image_size_g1_one_twelfth\";a:2:{s:6:\"height\";s:0:\"\";s:4:\"crop\";s:8:\"standard\";}s:22:\"ta_preheader_open_type\";s:7:\"overlay\";s:28:\"ta_preheader_open_on_startup\";s:4:\"none\";s:18:\"ta_preheader_space\";s:4:\"none\";s:31:\"ta_preheader_top_divider_switch\";s:8:\"standard\";s:30:\"ta_preheader_top_divider_color\";s:7:\"#fb4400\";s:30:\"ta_preheader_top_divider_width\";s:1:\"3\";s:34:\"ta_preheader_bottom_divider_switch\";s:8:\"standard\";s:33:\"ta_preheader_bottom_divider_color\";s:7:\"#e6e6e6\";s:33:\"ta_preheader_bottom_divider_width\";s:1:\"1\";s:19:\"ta_preheader_layout\";s:11:\"wide-narrow\";s:24:\"ta_preheader_composition\";s:15:\"1/4+1/4+1/4+1/4\";s:27:\"ta_preheader_layout_corners\";a:4:{s:2:\"tl\";s:6:\"square\";s:2:\"tr\";s:6:\"square\";s:2:\"br\";s:6:\"square\";s:2:\"bl\";s:6:\"square\";}s:28:\"ta_preheader_g1_social_icons\";s:4:\"none\";s:23:\"ta_preheader_searchform\";s:4:\"none\";s:28:\"ta_preheader_cs_1_background\";s:7:\"#ffffff\";s:36:\"ta_preheader_cs_1_background_opacity\";s:3:\"100\";s:35:\"ta_preheader_cs_1_background_switch\";s:4:\"none\";s:34:\"ta_preheader_cs_1_background_image\";s:0:\"\";s:39:\"ta_preheader_cs_1_background_image_hdpi\";s:0:\"\";s:35:\"ta_preheader_cs_1_background_repeat\";s:9:\"no-repeat\";s:37:\"ta_preheader_cs_1_background_position\";s:8:\"left top\";s:39:\"ta_preheader_cs_1_background_attachment\";s:6:\"scroll\";s:23:\"ta_preheader_cs_1_text1\";s:7:\"#000000\";s:23:\"ta_preheader_cs_1_text2\";s:7:\"#666666\";s:23:\"ta_preheader_cs_1_text3\";s:7:\"#999999\";s:22:\"ta_preheader_cs_1_link\";s:7:\"#fb4400\";s:28:\"ta_preheader_cs_1_link_hover\";s:7:\"#000000\";s:28:\"ta_preheader_cs_2_background\";s:7:\"#fb4400\";s:23:\"ta_preheader_cs_2_text1\";s:7:\"#ffffff\";s:18:\"ta_header_position\";s:5:\"fixed\";s:15:\"ta_header_space\";s:4:\"none\";s:28:\"ta_header_top_divider_switch\";s:4:\"none\";s:27:\"ta_header_top_divider_color\";s:0:\"\";s:27:\"ta_header_top_divider_width\";s:0:\"\";s:31:\"ta_header_bottom_divider_switch\";s:8:\"standard\";s:30:\"ta_header_bottom_divider_color\";s:7:\"#597600\";s:30:\"ta_header_bottom_divider_width\";s:1:\"1\";s:16:\"ta_header_layout\";s:11:\"wide-narrow\";s:21:\"ta_header_composition\";s:10:\"left-right\";s:24:\"ta_header_layout_corners\";a:4:{s:2:\"tl\";s:6:\"square\";s:2:\"tr\";s:6:\"square\";s:2:\"br\";s:6:\"square\";s:2:\"bl\";s:6:\"square\";}s:23:\"ta_header_id_margin_top\";s:2:\"30\";s:26:\"ta_header_id_margin_bottom\";s:2:\"30\";s:32:\"ta_header_primary_nav_margin_top\";s:2:\"30\";s:35:\"ta_header_primary_nav_margin_bottom\";s:2:\"30\";s:17:\"ta_header_tagline\";s:4:\"none\";s:20:\"ta_header_searchform\";s:8:\"standard\";s:27:\"ta_header_primary_nav_style\";s:8:\"unstyled\";s:25:\"ta_header_cs_1_background\";s:7:\"#a8dd44\";s:33:\"ta_header_cs_1_background_opacity\";s:3:\"100\";s:32:\"ta_header_cs_1_background_switch\";s:4:\"none\";s:31:\"ta_header_cs_1_background_image\";s:0:\"\";s:36:\"ta_header_cs_1_background_image_hdpi\";s:0:\"\";s:32:\"ta_header_cs_1_background_repeat\";s:9:\"no-repeat\";s:34:\"ta_header_cs_1_background_position\";s:8:\"left top\";s:36:\"ta_header_cs_1_background_attachment\";s:6:\"scroll\";s:20:\"ta_header_cs_1_text1\";s:7:\"#000000\";s:20:\"ta_header_cs_1_text2\";s:7:\"#666666\";s:20:\"ta_header_cs_1_text3\";s:7:\"#999999\";s:19:\"ta_header_cs_1_link\";s:7:\"#fb4400\";s:25:\"ta_header_cs_1_link_hover\";s:7:\"#858585\";s:25:\"ta_header_cs_2_background\";s:7:\"#94949c\";s:20:\"ta_header_cs_2_text1\";s:7:\"#ffffff\";s:19:\"ta_precontent_space\";s:4:\"none\";s:32:\"ta_precontent_top_divider_switch\";s:4:\"none\";s:31:\"ta_precontent_top_divider_color\";s:0:\"\";s:31:\"ta_precontent_top_divider_width\";s:0:\"\";s:35:\"ta_precontent_bottom_divider_switch\";s:4:\"none\";s:34:\"ta_precontent_bottom_divider_color\";s:0:\"\";s:34:\"ta_precontent_bottom_divider_width\";s:0:\"\";s:20:\"ta_precontent_layout\";s:11:\"wide-narrow\";s:28:\"ta_precontent_layout_corners\";a:4:{s:2:\"tl\";s:6:\"square\";s:2:\"tr\";s:6:\"square\";s:2:\"br\";s:6:\"square\";s:2:\"bl\";s:6:\"square\";}s:29:\"ta_precontent_cs_1_background\";s:7:\"#fb4400\";s:37:\"ta_precontent_cs_1_background_opacity\";s:3:\"100\";s:36:\"ta_precontent_cs_1_background_switch\";s:4:\"none\";s:35:\"ta_precontent_cs_1_background_image\";s:0:\"\";s:40:\"ta_precontent_cs_1_background_image_hdpi\";s:0:\"\";s:36:\"ta_precontent_cs_1_background_repeat\";s:9:\"no-repeat\";s:38:\"ta_precontent_cs_1_background_position\";s:8:\"left top\";s:40:\"ta_precontent_cs_1_background_attachment\";s:6:\"scroll\";s:24:\"ta_precontent_cs_1_text1\";s:7:\"#ffffff\";s:24:\"ta_precontent_cs_1_text2\";s:7:\"#fedad4\";s:24:\"ta_precontent_cs_1_text3\";s:7:\"#fdb2a3\";s:23:\"ta_precontent_cs_1_link\";s:7:\"#ffffff\";s:29:\"ta_precontent_cs_1_link_hover\";s:7:\"#ffffff\";s:29:\"ta_precontent_cs_2_background\";s:7:\"#000000\";s:24:\"ta_precontent_cs_2_text1\";s:7:\"#ffffff\";s:16:\"ta_content_space\";s:4:\"none\";s:29:\"ta_content_top_divider_switch\";s:4:\"none\";s:28:\"ta_content_top_divider_color\";s:0:\"\";s:28:\"ta_content_top_divider_width\";s:0:\"\";s:32:\"ta_content_bottom_divider_switch\";s:4:\"none\";s:31:\"ta_content_bottom_divider_color\";s:0:\"\";s:31:\"ta_content_bottom_divider_width\";s:0:\"\";s:17:\"ta_content_layout\";s:11:\"wide-narrow\";s:25:\"ta_content_layout_corners\";a:4:{s:2:\"tl\";s:6:\"square\";s:2:\"tr\";s:6:\"square\";s:2:\"br\";s:6:\"square\";s:2:\"bl\";s:6:\"square\";}s:26:\"ta_content_cs_1_background\";s:7:\"#f4f4f4\";s:34:\"ta_content_cs_1_background_opacity\";s:3:\"100\";s:33:\"ta_content_cs_1_background_switch\";s:4:\"none\";s:32:\"ta_content_cs_1_background_image\";s:0:\"\";s:37:\"ta_content_cs_1_background_image_hdpi\";s:0:\"\";s:33:\"ta_content_cs_1_background_repeat\";s:9:\"no-repeat\";s:35:\"ta_content_cs_1_background_position\";s:8:\"left top\";s:37:\"ta_content_cs_1_background_attachment\";s:6:\"scroll\";s:21:\"ta_content_cs_1_text1\";s:7:\"#000000\";s:21:\"ta_content_cs_1_text2\";s:7:\"#666666\";s:21:\"ta_content_cs_1_text3\";s:7:\"#999999\";s:20:\"ta_content_cs_1_link\";s:7:\"#fb4400\";s:26:\"ta_content_cs_1_link_hover\";s:7:\"#000000\";s:26:\"ta_content_cs_2_background\";s:7:\"#fb4400\";s:21:\"ta_content_cs_2_text1\";s:7:\"#ffffff\";s:18:\"ta_prefooter_space\";s:4:\"none\";s:31:\"ta_prefooter_top_divider_switch\";s:4:\"none\";s:30:\"ta_prefooter_top_divider_color\";s:0:\"\";s:30:\"ta_prefooter_top_divider_width\";s:0:\"\";s:34:\"ta_prefooter_bottom_divider_switch\";s:4:\"none\";s:33:\"ta_prefooter_bottom_divider_color\";s:0:\"\";s:33:\"ta_prefooter_bottom_divider_width\";s:0:\"\";s:19:\"ta_prefooter_layout\";s:11:\"wide-narrow\";s:24:\"ta_prefooter_composition\";s:15:\"1/4+1/4+1/4+1/4\";s:27:\"ta_prefooter_layout_corners\";a:4:{s:2:\"tl\";s:6:\"square\";s:2:\"tr\";s:6:\"square\";s:2:\"br\";s:6:\"square\";s:2:\"bl\";s:6:\"square\";}s:28:\"ta_prefooter_twitter_toolbar\";s:4:\"none\";s:17:\"ta_prefooter_gmap\";s:1:\"4\";s:28:\"ta_prefooter_cs_1_background\";s:7:\"#333333\";s:36:\"ta_prefooter_cs_1_background_opacity\";s:3:\"100\";s:35:\"ta_prefooter_cs_1_background_switch\";s:4:\"none\";s:34:\"ta_prefooter_cs_1_background_image\";s:0:\"\";s:39:\"ta_prefooter_cs_1_background_image_hdpi\";s:0:\"\";s:35:\"ta_prefooter_cs_1_background_repeat\";s:9:\"no-repeat\";s:37:\"ta_prefooter_cs_1_background_position\";s:8:\"left top\";s:39:\"ta_prefooter_cs_1_background_attachment\";s:6:\"scroll\";s:23:\"ta_prefooter_cs_1_text1\";s:7:\"#ffffff\";s:23:\"ta_prefooter_cs_1_text2\";s:7:\"#999999\";s:23:\"ta_prefooter_cs_1_text3\";s:7:\"#666666\";s:22:\"ta_prefooter_cs_1_link\";s:7:\"#fb4400\";s:28:\"ta_prefooter_cs_1_link_hover\";s:7:\"#ffffff\";s:28:\"ta_prefooter_cs_2_background\";s:7:\"#fb4400\";s:23:\"ta_prefooter_cs_2_text1\";s:7:\"#ffffff\";s:15:\"ta_footer_space\";s:4:\"none\";s:28:\"ta_footer_top_divider_switch\";s:4:\"none\";s:27:\"ta_footer_top_divider_color\";s:0:\"\";s:27:\"ta_footer_top_divider_width\";s:0:\"\";s:31:\"ta_footer_bottom_divider_switch\";s:4:\"none\";s:30:\"ta_footer_bottom_divider_color\";s:0:\"\";s:30:\"ta_footer_bottom_divider_width\";s:0:\"\";s:16:\"ta_footer_layout\";s:11:\"wide-narrow\";s:21:\"ta_footer_composition\";s:2:\"01\";s:24:\"ta_footer_layout_corners\";a:4:{s:2:\"tl\";s:6:\"square\";s:2:\"tr\";s:6:\"square\";s:2:\"br\";s:6:\"square\";s:2:\"bl\";s:6:\"square\";}s:25:\"ta_footer_cs_1_background\";s:7:\"#262626\";s:33:\"ta_footer_cs_1_background_opacity\";s:3:\"100\";s:32:\"ta_footer_cs_1_background_switch\";s:4:\"none\";s:31:\"ta_footer_cs_1_background_image\";s:0:\"\";s:36:\"ta_footer_cs_1_background_image_hdpi\";s:0:\"\";s:32:\"ta_footer_cs_1_background_repeat\";s:9:\"no-repeat\";s:34:\"ta_footer_cs_1_background_position\";s:8:\"left top\";s:36:\"ta_footer_cs_1_background_attachment\";s:6:\"scroll\";s:20:\"ta_footer_cs_1_text1\";s:7:\"#ffffff\";s:20:\"ta_footer_cs_1_text2\";s:7:\"#999999\";s:20:\"ta_footer_cs_1_text3\";s:7:\"#666666\";s:19:\"ta_footer_cs_1_link\";s:7:\"#fb4400\";s:25:\"ta_footer_cs_1_link_hover\";s:7:\"#ffffff\";s:25:\"ta_footer_cs_2_background\";s:7:\"#fb4400\";s:20:\"ta_footer_cs_2_text1\";s:7:\"#ffffff\";s:24:\"post_type_page_home_page\";s:3:\"124\";s:29:\"post_type_page_comment_status\";s:6:\"closed\";s:26:\"post_type_page_ping_status\";s:6:\"closed\";s:30:\"post_type_post_single_template\";s:13:\"sidebar_right\";s:36:\"post_type_post_single_element_slider\";s:0:\"\";s:39:\"post_type_post_single_element_sidebar_1\";s:7:\"primary\";s:41:\"post_type_post_single_element_breadcrumbs\";s:8:\"standard\";s:35:\"post_type_post_single_element_title\";s:8:\"standard\";s:39:\"post_type_post_single_element_media_box\";s:4:\"list\";s:34:\"post_type_post_single_element_date\";s:8:\"standard\";s:36:\"post_type_post_single_element_author\";s:8:\"standard\";s:43:\"post_type_post_single_element_comments_link\";s:8:\"standard\";s:40:\"post_type_post_single_element_categories\";s:8:\"standard\";s:34:\"post_type_post_single_element_tags\";s:8:\"standard\";s:45:\"post_type_post_single_element_related_entries\";s:8:\"standard\";s:29:\"post_type_post_page_for_posts\";s:0:\"\";s:31:\"post_type_post_archive_template\";s:18:\"1col_sidebar_right\";s:38:\"post_type_post_archive_template_effect\";s:4:\"none\";s:29:\"post_type_post_posts_per_page\";s:2:\"12\";s:39:\"post_type_post_collection_element_title\";s:8:\"standard\";s:48:\"post_type_post_collection_element_featured_media\";s:8:\"standard\";s:38:\"post_type_post_collection_element_date\";s:8:\"standard\";s:40:\"post_type_post_collection_element_author\";s:8:\"standard\";s:47:\"post_type_post_collection_element_comments_link\";s:8:\"standard\";s:41:\"post_type_post_collection_element_summary\";s:8:\"standard\";s:44:\"post_type_post_collection_element_categories\";s:8:\"standard\";s:38:\"post_type_post_collection_element_tags\";s:8:\"standard\";s:42:\"post_type_post_collection_element_button_1\";s:8:\"standard\";s:34:\"taxonomy_category_archive_template\";s:18:\"1col_sidebar_right\";s:27:\"taxonomy_category_sidebar_1\";s:7:\"primary\";s:41:\"taxonomy_category_archive_template_effect\";s:4:\"none\";s:32:\"taxonomy_category_posts_per_page\";s:2:\"12\";s:42:\"taxonomy_category_collection_element_title\";s:8:\"standard\";s:51:\"taxonomy_category_collection_element_featured_media\";s:8:\"standard\";s:41:\"taxonomy_category_collection_element_date\";s:8:\"standard\";s:43:\"taxonomy_category_collection_element_author\";s:8:\"standard\";s:50:\"taxonomy_category_collection_element_comments_link\";s:8:\"standard\";s:44:\"taxonomy_category_collection_element_summary\";s:8:\"standard\";s:47:\"taxonomy_category_collection_element_categories\";s:8:\"standard\";s:41:\"taxonomy_category_collection_element_tags\";s:8:\"standard\";s:45:\"taxonomy_category_collection_element_button_1\";s:8:\"standard\";s:34:\"taxonomy_post_tag_archive_template\";s:18:\"1col_sidebar_right\";s:27:\"taxonomy_post_tag_sidebar_1\";s:7:\"primary\";s:41:\"taxonomy_post_tag_archive_template_effect\";s:4:\"none\";s:32:\"taxonomy_post_tag_posts_per_page\";s:2:\"12\";s:42:\"taxonomy_post_tag_collection_element_title\";s:8:\"standard\";s:51:\"taxonomy_post_tag_collection_element_featured_media\";s:8:\"standard\";s:41:\"taxonomy_post_tag_collection_element_date\";s:8:\"standard\";s:43:\"taxonomy_post_tag_collection_element_author\";s:8:\"standard\";s:50:\"taxonomy_post_tag_collection_element_comments_link\";s:8:\"standard\";s:44:\"taxonomy_post_tag_collection_element_summary\";s:8:\"standard\";s:47:\"taxonomy_post_tag_collection_element_categories\";s:8:\"standard\";s:41:\"taxonomy_post_tag_collection_element_tags\";s:8:\"standard\";s:45:\"taxonomy_post_tag_collection_element_button_1\";s:8:\"standard\";s:30:\"post_type_g1_work_rewrite_slug\";s:0:\"\";s:33:\"post_type_g1_work_single_template\";s:13:\"sidebar_right\";s:39:\"post_type_g1_work_single_element_slider\";s:0:\"\";s:42:\"post_type_g1_work_single_element_sidebar_1\";s:7:\"primary\";s:44:\"post_type_g1_work_single_element_breadcrumbs\";s:8:\"standard\";s:38:\"post_type_g1_work_single_element_title\";s:8:\"standard\";s:42:\"post_type_g1_work_single_element_media_box\";s:4:\"list\";s:37:\"post_type_g1_work_single_element_date\";s:8:\"standard\";s:46:\"post_type_g1_work_single_element_comments_link\";s:8:\"standard\";s:43:\"post_type_g1_work_single_element_categories\";s:8:\"standard\";s:37:\"post_type_g1_work_single_element_tags\";s:8:\"standard\";s:48:\"post_type_g1_work_single_element_related_entries\";s:8:\"standard\";s:32:\"post_type_g1_work_page_for_posts\";s:0:\"\";s:34:\"post_type_g1_work_archive_template\";s:18:\"1col_sidebar_right\";s:41:\"post_type_g1_work_archive_template_effect\";s:4:\"none\";s:32:\"post_type_g1_work_posts_per_page\";s:2:\"12\";s:42:\"post_type_g1_work_collection_element_title\";s:8:\"standard\";s:51:\"post_type_g1_work_collection_element_featured_media\";s:8:\"standard\";s:41:\"post_type_g1_work_collection_element_date\";s:8:\"standard\";s:50:\"post_type_g1_work_collection_element_comments_link\";s:8:\"standard\";s:44:\"post_type_g1_work_collection_element_summary\";s:8:\"standard\";s:47:\"post_type_g1_work_collection_element_categories\";s:8:\"standard\";s:41:\"post_type_g1_work_collection_element_tags\";s:8:\"standard\";s:45:\"post_type_g1_work_collection_element_button_1\";s:8:\"standard\";s:38:\"taxonomy_g1_work_category_rewrite_slug\";s:0:\"\";s:42:\"taxonomy_g1_work_category_archive_template\";s:18:\"1col_sidebar_right\";s:35:\"taxonomy_g1_work_category_sidebar_1\";s:7:\"primary\";s:49:\"taxonomy_g1_work_category_archive_template_effect\";s:4:\"none\";s:40:\"taxonomy_g1_work_category_posts_per_page\";s:2:\"12\";s:50:\"taxonomy_g1_work_category_collection_element_title\";s:8:\"standard\";s:59:\"taxonomy_g1_work_category_collection_element_featured_media\";s:8:\"standard\";s:49:\"taxonomy_g1_work_category_collection_element_date\";s:8:\"standard\";s:58:\"taxonomy_g1_work_category_collection_element_comments_link\";s:8:\"standard\";s:52:\"taxonomy_g1_work_category_collection_element_summary\";s:8:\"standard\";s:55:\"taxonomy_g1_work_category_collection_element_categories\";s:8:\"standard\";s:49:\"taxonomy_g1_work_category_collection_element_tags\";s:8:\"standard\";s:53:\"taxonomy_g1_work_category_collection_element_button_1\";s:8:\"standard\";s:33:\"taxonomy_g1_work_tag_rewrite_slug\";s:0:\"\";s:37:\"taxonomy_g1_work_tag_archive_template\";s:18:\"1col_sidebar_right\";s:30:\"taxonomy_g1_work_tag_sidebar_1\";s:7:\"primary\";s:44:\"taxonomy_g1_work_tag_archive_template_effect\";s:4:\"none\";s:35:\"taxonomy_g1_work_tag_posts_per_page\";s:2:\"12\";s:45:\"taxonomy_g1_work_tag_collection_element_title\";s:8:\"standard\";s:54:\"taxonomy_g1_work_tag_collection_element_featured_media\";s:8:\"standard\";s:44:\"taxonomy_g1_work_tag_collection_element_date\";s:8:\"standard\";s:53:\"taxonomy_g1_work_tag_collection_element_comments_link\";s:8:\"standard\";s:47:\"taxonomy_g1_work_tag_collection_element_summary\";s:8:\"standard\";s:50:\"taxonomy_g1_work_tag_collection_element_categories\";s:8:\"standard\";s:44:\"taxonomy_g1_work_tag_collection_element_tags\";s:8:\"standard\";s:48:\"taxonomy_g1_work_tag_collection_element_button_1\";s:8:\"standard\";s:31:\"simple_slider_animationDuration\";s:3:\"0.5\";s:28:\"simple_slider_slideshowSpeed\";s:1:\"5\";s:24:\"simple_slider_fullscreen\";s:8:\"standard\";s:22:\"simple_slider_autoplay\";s:8:\"standard\";s:28:\"simple_slider_coinNavigation\";s:8:\"standard\";s:33:\"simple_slider_directionNavigation\";s:8:\"standard\";s:25:\"simple_slider_progressBar\";s:8:\"standard\";s:9:\"map_color\";s:7:\"#808080\";s:8:\"map_type\";s:7:\"roadmap\";s:12:\"map_latitude\";s:9:\"40.714353\";s:13:\"map_longitude\";s:10:\"-74.005973\";s:8:\"map_zoom\";s:2:\"15\";s:10:\"map_marker\";s:8:\"standard\";s:15:\"map_marker_icon\";s:0:\"\";s:18:\"map_marker_content\";s:0:\"\";s:17:\"mailchimp_api_key\";s:0:\"\";s:20:\"mailchimp_debug_mode\";s:4:\"none\";s:16:\"twitter_username\";s:0:\"\";s:11:\"twitter_max\";s:1:\"3\";s:16:\"twitter_autoplay\";s:8:\"standard\";s:22:\"twitter_cache_duration\";s:4:\"3600\";s:16:\"twitter_retweets\";s:4:\"none\";s:20:\"twitter_consumer_key\";s:0:\"\";s:23:\"twitter_consumer_secret\";s:0:\"\";s:20:\"twitter_access_token\";s:0:\"\";s:27:\"twitter_access_token_secret\";s:0:\"\";s:16:\"maintenance_mode\";s:4:\"none\";s:24:\"maintenance_mode_page_id\";s:3:\"124\";s:28:\"advanced_dynamic_style_cache\";s:8:\"standard\";s:20:\"map_invert_lightness\";i:0;}", "yes");
INSERT INTO `d1_options` VALUES("144", "revslider_checktables", "1", "yes");
INSERT INTO `d1_options` VALUES("145", "revslider-static-css", ".g1-layer-small-black {\r\n    padding:5px 20px;\r\n    position:absolute;\r\n    font-size:18px;\r\n    line-height:24px;\r\n    color:#000;\r\n    background-color:rgb(255,255,255);\r\n    background-color:rgba(255,255,255, 0.75);\r\n}\r\n\r\n.g1-layer-small-white {\r\n    padding:5px 20px;\r\n    position:absolute;\r\n    font-size:18px;\r\n    line-height:24px;\r\n    color:#fff;\r\n    background-color:rgb(0,0,0);\r\n    background-color:rgba(0,0,0, 0.75);\r\n}\r\n\r\n.g1-layer-medium-black {\r\n    padding:7px 20px;\r\n    position:absolute;\r\n    font-size:36px;\r\n    line-height:42px;\r\n    color:#000;\r\n    background-color:rgb(255,255,255);\r\n    background-color:rgba(255,255,255, 0.75);\r\n}\r\n\r\n.g1-layer-medium-white {\r\n    padding:7px 20px;\r\n    position:absolute;\r\n    font-size:36px;\r\n    line-height:42px;\r\n    color:#fff;\r\n    background-color:rgb(0,0,0);\r\n    background-color:rgba(0,0,0, 0.75);\r\n}\r\n\r\n.g1-layer-large-black {\r\n    padding:7px 20px;\r\n    position:absolute;\r\n    font-size:60px;\r\n    line-height:70px;\r\n    color:#000;\r\n    background-color:rgb(255,255,255);\r\n    background-color:rgba(255,255,255, 0.75);\r\n}\r\n\r\n.g1-layer-large-white {\r\n    padding:7px 20px;\r\n    position:absolute;\r\n    font-size:60px;\r\n    line-height:70px;\r\n    color:#fff;\r\n    background-color:rgb(0,0,0);\r\n    background-color:rgba(0,0,0, 0.75);\r\n}\r\n\r\n.g1-layer-xlarge-black {\r\n    padding:7px 20px;\r\n    position:absolute;\r\n    font-size:84px;\r\n    line-height:98px;\r\n    color:#000;\r\n    background-color:rgb(255,255,255);\r\n    background-color:rgba(255,255,255, 0.75);\r\n}\r\n\r\n.g1-layer-xlarge-white {\r\n    padding:7px 20px;\r\n    position:absolute;\r\n    font-size:84px;\r\n    line-height:98px;\r\n    color:#fff;\r\n    background-color:rgb(0,0,0);\r\n    background-color:rgba(0,0,0, 0.75);\r\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}", "yes");
INSERT INTO `d1_options` VALUES("146", "revslider-update-check-short", "1416023275", "yes");
INSERT INTO `d1_options` VALUES("147", "recently_activated", "a:0:{}", "yes");
INSERT INTO `d1_options` VALUES("175", "category_children", "a:0:{}", "yes");
INSERT INTO `d1_options` VALUES("176", "g1_work_category_children", "a:0:{}", "yes");
INSERT INTO `d1_options` VALUES("177", "widget_pages", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("178", "widget_calendar", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("179", "widget_tag_cloud", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("180", "widget_nav_menu", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("181", "widget_g1_gmaps_widget", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("182", "widget_g1_social_icons", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("183", "widget_rev-slider-widget", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("184", "widget_custom_pages_widget", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("185", "widget_related_pages_widget", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("186", "widget_custom_posts_widget", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("187", "widget_popular_posts_widget", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("188", "widget_recent_posts_widget", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("189", "widget_related_posts_widget", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("190", "widget_twitter_widget", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("191", "widget_gmap_widget", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("192", "widget_g1_mailchimp_widget", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("193", "widget_contact_form_widget", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("194", "widget_custom_works_widget", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("195", "widget_popular_works_widget", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("196", "widget_recent_works_widget", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("197", "widget_related_works_widget", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `d1_options` VALUES("200", "theme_mods_d5-corporate-lite", "a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1408645109;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}", "yes");
INSERT INTO `d1_options` VALUES("205", "nav_menu_options", "a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}", "yes");
INSERT INTO `d1_options` VALUES("210", "rewrite_rules", "a:97:{s:7:\"work/?$\";s:27:\"index.php?post_type=g1_work\";s:37:\"work/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=g1_work&feed=$matches[1]\";s:32:\"work/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=g1_work&feed=$matches[1]\";s:24:\"work/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=g1_work&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:32:\"work/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"work/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"work/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"work/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"work/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:25:\"work/([^/]+)/trackback/?$\";s:34:\"index.php?g1_work=$matches[1]&tb=1\";s:45:\"work/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?g1_work=$matches[1]&feed=$matches[2]\";s:40:\"work/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?g1_work=$matches[1]&feed=$matches[2]\";s:33:\"work/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?g1_work=$matches[1]&paged=$matches[2]\";s:40:\"work/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?g1_work=$matches[1]&cpage=$matches[2]\";s:25:\"work/([^/]+)(/[0-9]+)?/?$\";s:46:\"index.php?g1_work=$matches[1]&page=$matches[2]\";s:21:\"work/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:31:\"work/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:51:\"work/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"work/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"work/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:54:\"work-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?g1_work_category=$matches[1]&feed=$matches[2]\";s:49:\"work-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?g1_work_category=$matches[1]&feed=$matches[2]\";s:42:\"work-category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?g1_work_category=$matches[1]&paged=$matches[2]\";s:24:\"work-category/([^/]+)/?$\";s:38:\"index.php?g1_work_category=$matches[1]\";s:49:\"work-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?g1_work_tag=$matches[1]&feed=$matches[2]\";s:44:\"work-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?g1_work_tag=$matches[1]&feed=$matches[2]\";s:37:\"work-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?g1_work_tag=$matches[1]&paged=$matches[2]\";s:19:\"work-tag/([^/]+)/?$\";s:33:\"index.php?g1_work_tag=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s: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=124&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");
INSERT INTO `d1_options` VALUES("233", "revslider-latest-version", "4.6.3", "yes");
INSERT INTO `d1_options` VALUES("236", "revslider-valid-notice", "false", "yes");
INSERT INTO `d1_options` VALUES("534", "wlcms_o_ver", "1.5.2", "yes");
INSERT INTO `d1_options` VALUES("322", "mw_adminimize", "a:48:{s:47:\"mw_adminimize_disabled_menu_administrator_items\";a:0:{}s:50:\"mw_adminimize_disabled_submenu_administrator_items\";a:0:{}s:52:\"mw_adminimize_disabled_admin_bar_administrator_items\";a:0:{}s:56:\"mw_adminimize_disabled_global_option_administrator_items\";a:0:{}s:57:\"mw_adminimize_disabled_metaboxes_post_administrator_items\";a:0:{}s:57:\"mw_adminimize_disabled_metaboxes_page_administrator_items\";a:0:{}s:60:\"mw_adminimize_disabled_metaboxes_g1_gmap_administrator_items\";a:0:{}s:67:\"mw_adminimize_disabled_metaboxes_g1_gmap_marker_administrator_items\";a:0:{}s:60:\"mw_adminimize_disabled_metaboxes_g1_work_administrator_items\";a:0:{}s:40:\"mw_adminimize_disabled_menu_editor_items\";a:0:{}s:43:\"mw_adminimize_disabled_submenu_editor_items\";a:0:{}s:45:\"mw_adminimize_disabled_admin_bar_editor_items\";a:0:{}s:49:\"mw_adminimize_disabled_global_option_editor_items\";a:0:{}s:50:\"mw_adminimize_disabled_metaboxes_post_editor_items\";a:0:{}s:50:\"mw_adminimize_disabled_metaboxes_page_editor_items\";a:0:{}s:53:\"mw_adminimize_disabled_metaboxes_g1_gmap_editor_items\";a:0:{}s:60:\"mw_adminimize_disabled_metaboxes_g1_gmap_marker_editor_items\";a:0:{}s:53:\"mw_adminimize_disabled_metaboxes_g1_work_editor_items\";a:0:{}s:40:\"mw_adminimize_disabled_menu_author_items\";a:0:{}s:43:\"mw_adminimize_disabled_submenu_author_items\";a:0:{}s:45:\"mw_adminimize_disabled_admin_bar_author_items\";a:0:{}s:49:\"mw_adminimize_disabled_global_option_author_items\";a:0:{}s:50:\"mw_adminimize_disabled_metaboxes_post_author_items\";a:0:{}s:50:\"mw_adminimize_disabled_metaboxes_page_author_items\";a:0:{}s:53:\"mw_adminimize_disabled_metaboxes_g1_gmap_author_items\";a:0:{}s:60:\"mw_adminimize_disabled_metaboxes_g1_gmap_marker_author_items\";a:0:{}s:53:\"mw_adminimize_disabled_metaboxes_g1_work_author_items\";a:0:{}s:45:\"mw_adminimize_disabled_menu_contributor_items\";a:0:{}s:48:\"mw_adminimize_disabled_submenu_contributor_items\";a:0:{}s:50:\"mw_adminimize_disabled_admin_bar_contributor_items\";a:0:{}s:54:\"mw_adminimize_disabled_global_option_contributor_items\";a:0:{}s:55:\"mw_adminimize_disabled_metaboxes_post_contributor_items\";a:0:{}s:55:\"mw_adminimize_disabled_metaboxes_page_contributor_items\";a:0:{}s:58:\"mw_adminimize_disabled_metaboxes_g1_gmap_contributor_items\";a:0:{}s:65:\"mw_adminimize_disabled_metaboxes_g1_gmap_marker_contributor_items\";a:0:{}s:58:\"mw_adminimize_disabled_metaboxes_g1_work_contributor_items\";a:0:{}s:44:\"mw_adminimize_disabled_menu_subscriber_items\";a:0:{}s:47:\"mw_adminimize_disabled_submenu_subscriber_items\";a:0:{}s:49:\"mw_adminimize_disabled_admin_bar_subscriber_items\";a:0:{}s:53:\"mw_adminimize_disabled_global_option_subscriber_items\";a:0:{}s:54:\"mw_adminimize_disabled_metaboxes_post_subscriber_items\";a:0:{}s:54:\"mw_adminimize_disabled_metaboxes_page_subscriber_items\";a:0:{}s:57:\"mw_adminimize_disabled_metaboxes_g1_gmap_subscriber_items\";a:0:{}s:64:\"mw_adminimize_disabled_metaboxes_g1_gmap_marker_subscriber_items\";a:0:{}s:57:\"mw_adminimize_disabled_metaboxes_g1_work_subscriber_items\";a:0:{}s:26:\"mw_adminimize_default_menu\";a:18:{i:2;a:7:{i:0;s:9:\"Dashboard\";i:1;s:4:\"read\";i:2;s:9:\"index.php\";i:3;s:0:\"\";i:4;s:57:\"menu-top menu-top-first menu-icon-dashboard menu-top-last\";i:5;s:14:\"menu-dashboard\";i:6;s:19:\"dashicons-dashboard\";}i:4;a:5:{i:0;s:0:\"\";i:1;s:4:\"read\";i:2;s:10:\"separator1\";i:3;s:0:\"\";i:4;s:17:\"wp-menu-separator\";}i:5;a:7:{i:0;s:5:\"Posts\";i:1;s:10:\"edit_posts\";i:2;s:8:\"edit.php\";i:3;s:0:\"\";i:4;s:52:\"open-if-no-js menu-top menu-icon-post menu-top-first\";i:5;s:10:\"menu-posts\";i:6;s:20:\"dashicons-admin-post\";}i:10;a:7:{i:0;s:5:\"Media\";i:1;s:12:\"upload_files\";i:2;s:10:\"upload.php\";i:3;s:0:\"\";i:4;s:24:\"menu-top menu-icon-media\";i:5;s:10:\"menu-media\";i:6;s:21:\"dashicons-admin-media\";}i:20;a:7:{i:0;s:5:\"Pages\";i:1;s:10:\"edit_pages\";i:2;s:23:\"edit.php?post_type=page\";i:3;s:0:\"\";i:4;s:23:\"menu-top menu-icon-page\";i:5;s:10:\"menu-pages\";i:6;s:20:\"dashicons-admin-page\";}i:25;a:7:{i:0;s:87:\"Comments <span class=\'awaiting-mod count-2\'><span class=\'pending-count\'>2</span></span>\";i:1;s:10:\"edit_posts\";i:2;s:17:\"edit-comments.php\";i:3;s:0:\"\";i:4;s:27:\"menu-top menu-icon-comments\";i:5;s:13:\"menu-comments\";i:6;s:24:\"dashicons-admin-comments\";}i:26;a:7:{i:0;s:8:\"G1 GMaps\";i:1;s:10:\"edit_posts\";i:2;s:26:\"edit.php?post_type=g1_gmap\";i:3;s:0:\"\";i:4;s:26:\"menu-top menu-icon-g1_gmap\";i:5;s:18:\"menu-posts-g1_gmap\";i:6;s:22:\"dashicons-location-alt\";}i:27;a:7:{i:0;s:5:\"Works\";i:1;s:10:\"edit_posts\";i:2;s:26:\"edit.php?post_type=g1_work\";i:3;s:0:\"\";i:4;s:23:\"menu-top menu-icon-post\";i:5;s:18:\"menu-posts-g1_work\";i:6;s:20:\"dashicons-admin-post\";}i:28;a:7:{i:0;s:7:\"Sliders\";i:1;s:10:\"edit_posts\";i:2;s:35:\"edit.php?post_type=g1_simple_slider\";i:3;s:0:\"\";i:4;s:37:\"menu-top menu-icon-post menu-top-last\";i:5;s:27:\"menu-posts-g1_simple_slider\";i:6;s:20:\"dashicons-admin-post\";}i:59;a:5:{i:0;s:0:\"\";i:1;s:4:\"read\";i:2;s:10:\"separator2\";i:3;s:0:\"\";i:4;s:17:\"wp-menu-separator\";}i:60;a:7:{i:0;s:10:\"Appearance\";i:1;s:13:\"switch_themes\";i:2;s:10:\"themes.php\";i:3;s:0:\"\";i:4;s:44:\"menu-top menu-icon-appearance menu-top-first\";i:5;s:15:\"menu-appearance\";i:6;s:26:\"dashicons-admin-appearance\";}i:65;a:7:{i:0;s:87:\"Plugins <span class=\'update-plugins count-2\'><span class=\'plugin-count\'>2</span></span>\";i:1;s:16:\"activate_plugins\";i:2;s:11:\"plugins.php\";i:3;s:0:\"\";i:4;s:26:\"menu-top menu-icon-plugins\";i:5;s:12:\"menu-plugins\";i:6;s:23:\"dashicons-admin-plugins\";}i:70;a:7:{i:0;s:5:\"Users\";i:1;s:10:\"list_users\";i:2;s:9:\"users.php\";i:3;s:0:\"\";i:4;s:24:\"menu-top menu-icon-users\";i:5;s:10:\"menu-users\";i:6;s:21:\"dashicons-admin-users\";}i:75;a:7:{i:0;s:5:\"Tools\";i:1;s:10:\"edit_posts\";i:2;s:9:\"tools.php\";i:3;s:0:\"\";i:4;s:24:\"menu-top menu-icon-tools\";i:5;s:10:\"menu-tools\";i:6;s:21:\"dashicons-admin-tools\";}i:80;a:7:{i:0;s:8:\"Settings\";i:1;s:14:\"manage_options\";i:2;s:19:\"options-general.php\";i:3;s:0:\"\";i:4;s:41:\"menu-top menu-icon-settings menu-top-last\";i:5;s:13:\"menu-settings\";i:6;s:24:\"dashicons-admin-settings\";}i:99;a:5:{i:0;s:0:\"\";i:1;s:4:\"read\";i:2;s:14:\"separator-last\";i:3;s:0:\"\";i:4;s:17:\"wp-menu-separator\";}i:100;a:7:{i:0;s:10:\"Duplicator\";i:1;s:6:\"import\";i:2;s:10:\"duplicator\";i:3;s:17:\"Duplicator Plugin\";i:4;s:48:\"menu-top toplevel_page_duplicator menu-top-first\";i:5;s:24:\"toplevel_page_duplicator\";i:6;s:76:\"http://hrd.softons.cu.cc/wp-content/plugins/duplicator/assets/img/create.png\";}i:101;a:7:{i:0;s:17:\"Revolution Slider\";i:1;s:14:\"manage_options\";i:2;s:9:\"revslider\";i:3;s:17:\"Revolution Slider\";i:4;s:46:\"menu-top toplevel_page_revslider menu-top-last\";i:5;s:23:\"toplevel_page_revslider\";i:6;s:16:\"dashicons-update\";}}s:29:\"mw_adminimize_default_submenu\";a:13:{s:9:\"index.php\";a:2:{i:0;a:3:{i:0;s:4:\"Home\";i:1;s:4:\"read\";i:2;s:9:\"index.php\";}i:10;a:3:{i:0;s:149:\"Updates <span class=\'update-plugins count-6\' title=\'1 WordPress Update, 2 Plugin Updates, 3 Theme Updates\'><span class=\'update-count\'>6</span></span>\";i:1;s:11:\"update_core\";i:2;s:15:\"update-core.php\";}}s:8:\"edit.php\";a:5:{i:5;a:3:{i:0;s:9:\"All Posts\";i:1;s:10:\"edit_posts\";i:2;s:8:\"edit.php\";}i:10;a:3:{i:0;s:7:\"Add New\";i:1;s:10:\"edit_posts\";i:2;s:12:\"post-new.php\";}i:15;a:3:{i:0;s:10:\"Categories\";i:1;s:17:\"manage_categories\";i:2;s:31:\"edit-tags.php?taxonomy=category\";}i:16;a:3:{i:0;s:4:\"Tags\";i:1;s:17:\"manage_categories\";i:2;s:31:\"edit-tags.php?taxonomy=post_tag\";}i:17;a:3:{i:0;s:13:\"Relation Tags\";i:1;s:17:\"manage_categories\";i:2;s:38:\"edit-tags.php?taxonomy=g1_relation_tag\";}}s:10:\"upload.php\";a:2:{i:5;a:3:{i:0;s:7:\"Library\";i:1;s:12:\"upload_files\";i:2;s:10:\"upload.php\";}i:10;a:3:{i:0;s:7:\"Add New\";i:1;s:12:\"upload_files\";i:2;s:13:\"media-new.php\";}}s:23:\"edit.php?post_type=page\";a:3:{i:5;a:3:{i:0;s:9:\"All Pages\";i:1;s:10:\"edit_pages\";i:2;s:23:\"edit.php?post_type=page\";}i:10;a:3:{i:0;s:7:\"Add New\";i:1;s:10:\"edit_pages\";i:2;s:27:\"post-new.php?post_type=page\";}i:15;a:3:{i:0;s:13:\"Relation Tags\";i:1;s:17:\"manage_categories\";i:2;s:57:\"edit-tags.php?taxonomy=g1_relation_tag&amp;post_type=page\";}}s:26:\"edit.php?post_type=g1_gmap\";a:2:{i:5;a:3:{i:0;s:8:\"G1 GMaps\";i:1;s:10:\"edit_posts\";i:2;s:26:\"edit.php?post_type=g1_gmap\";}i:10;a:3:{i:0;s:8:\"Add GMap\";i:1;s:10:\"edit_posts\";i:2;s:30:\"post-new.php?post_type=g1_gmap\";}}s:26:\"edit.php?post_type=g1_work\";a:5:{i:5;a:3:{i:0;s:9:\"All Works\";i:1;s:10:\"edit_posts\";i:2;s:26:\"edit.php?post_type=g1_work\";}i:10;a:3:{i:0;s:7:\"Add new\";i:1;s:10:\"edit_posts\";i:2;s:30:\"post-new.php?post_type=g1_work\";}i:15;a:3:{i:0;s:15:\"Work Categories\";i:1;s:17:\"manage_categories\";i:2;s:61:\"edit-tags.php?taxonomy=g1_work_category&amp;post_type=g1_work\";}i:16;a:3:{i:0;s:9:\"Work Tags\";i:1;s:17:\"manage_categories\";i:2;s:56:\"edit-tags.php?taxonomy=g1_work_tag&amp;post_type=g1_work\";}i:17;a:3:{i:0;s:13:\"Relation Tags\";i:1;s:17:\"manage_categories\";i:2;s:60:\"edit-tags.php?taxonomy=g1_relation_tag&amp;post_type=g1_work\";}}s:35:\"edit.php?post_type=g1_simple_slider\";a:2:{i:5;a:3:{i:0;s:11:\"All Sliders\";i:1;s:10:\"edit_posts\";i:2;s:35:\"edit.php?post_type=g1_simple_slider\";}i:10;a:3:{i:0;s:7:\"Add new\";i:1;s:10:\"edit_posts\";i:2;s:39:\"post-new.php?post_type=g1_simple_slider\";}}s:10:\"themes.php\";a:6:{i:5;a:3:{i:0;s:6:\"Themes\";i:1;s:13:\"switch_themes\";i:2;s:10:\"themes.php\";}i:6;a:4:{i:0;s:9:\"Customize\";i:1;s:18:\"edit_theme_options\";i:2;s:13:\"customize.php\";i:3;s:20:\"hide-if-no-customize\";}i:7;a:3:{i:0;s:7:\"Widgets\";i:1;s:18:\"edit_theme_options\";i:2;s:11:\"widgets.php\";}i:10;a:3:{i:0;s:5:\"Menus\";i:1;s:18:\"edit_theme_options\";i:2;s:13:\"nav-menus.php\";}i:11;a:4:{i:0;s:13:\"Theme Options\";i:1;s:14:\"manage_options\";i:2;s:16:\"g1_theme_options\";i:3;s:13:\"Theme Options\";}i:12;a:4:{i:0;s:6:\"Editor\";i:1;s:11:\"edit_themes\";i:2;s:16:\"theme-editor.php\";i:3;s:6:\"Editor\";}}s:11:\"plugins.php\";a:3:{i:5;a:3:{i:0;s:17:\"Installed Plugins\";i:1;s:16:\"activate_plugins\";i:2;s:11:\"plugins.php\";}i:10;a:3:{i:0;s:7:\"Add New\";i:1;s:15:\"install_plugins\";i:2;s:18:\"plugin-install.php\";}i:15;a:3:{i:0;s:6:\"Editor\";i:1;s:12:\"edit_plugins\";i:2;s:17:\"plugin-editor.php\";}}s:9:\"users.php\";a:3:{i:5;a:3:{i:0;s:9:\"All Users\";i:1;s:10:\"list_users\";i:2;s:9:\"users.php\";}i:10;a:3:{i:0;s:7:\"Add New\";i:1;s:12:\"create_users\";i:2;s:12:\"user-new.php\";}i:15;a:3:{i:0;s:12:\"Your Profile\";i:1;s:4:\"read\";i:2;s:11:\"profile.php\";}}s:9:\"tools.php\";a:3:{i:5;a:3:{i:0;s:15:\"Available Tools\";i:1;s:10:\"edit_posts\";i:2;s:9:\"tools.php\";}i:10;a:3:{i:0;s:6:\"Import\";i:1;s:6:\"import\";i:2;s:10:\"import.php\";}i:15;a:3:{i:0;s:6:\"Export\";i:1;s:6:\"export\";i:2;s:10:\"export.php\";}}s:19:\"options-general.php\";a:7:{i:10;a:3:{i:0;s:7:\"General\";i:1;s:14:\"manage_options\";i:2;s:19:\"options-general.php\";}i:15;a:3:{i:0;s:7:\"Writing\";i:1;s:14:\"manage_options\";i:2;s:19:\"options-writing.php\";}i:20;a:3:{i:0;s:7:\"Reading\";i:1;s:14:\"manage_options\";i:2;s:19:\"options-reading.php\";}i:25;a:3:{i:0;s:10:\"Discussion\";i:1;s:14:\"manage_options\";i:2;s:22:\"options-discussion.php\";}i:30;a:3:{i:0;s:5:\"Media\";i:1;s:14:\"manage_options\";i:2;s:17:\"options-media.php\";}i:40;a:3:{i:0;s:10:\"Permalinks\";i:1;s:14:\"manage_options\";i:2;s:21:\"options-permalink.php\";}i:41;a:4:{i:0;s:15:\"G1 Social Icons\";i:1;s:14:\"manage_options\";i:2;s:23:\"g1_social_icons_options\";i:3;s:15:\"G1 Social Icons\";}}s:10:\"duplicator\";a:4:{i:0;a:4:{i:0;s:8:\"Packages\";i:1;s:6:\"import\";i:2;s:10:\"duplicator\";i:3;s:8:\"Packages\";}i:1;a:4:{i:0;s:8:\"Settings\";i:1;s:6:\"import\";i:2;s:19:\"duplicator-settings\";i:3;s:8:\"Settings\";}i:2;a:4:{i:0;s:5:\"Tools\";i:1;s:6:\"import\";i:2;s:16:\"duplicator-tools\";i:3;s:5:\"Tools\";}i:3;a:4:{i:0;s:7:\"Support\";i:1;s:6:\"import\";i:2;s:18:\"duplicator-support\";i:3;s:7:\"Support\";}}}s:31:\"mw_adminimize_dashboard_widgets\";a:4:{s:19:\"dashboard_right_now\";a:4:{s:2:\"id\";s:19:\"dashboard_right_now\";s:5:\"title\";s:11:\"At a Glance\";s:7:\"context\";s:6:\"normal\";s:8:\"priority\";s:4:\"core\";}s:18:\"dashboard_activity\";a:4:{s:2:\"id\";s:18:\"dashboard_activity\";s:5:\"title\";s:8:\"Activity\";s:7:\"context\";s:6:\"normal\";s:8:\"priority\";s:4:\"core\";}s:21:\"dashboard_quick_press\";a:4:{s:2:\"id\";s:21:\"dashboard_quick_press\";s:5:\"title\";s:0:\"\";s:7:\"context\";s:4:\"side\";s:8:\"priority\";s:4:\"core\";}s:17:\"dashboard_primary\";a:4:{s:2:\"id\";s:17:\"dashboard_primary\";s:5:\"title\";s:14:\"WordPress News\";s:7:\"context\";s:4:\"side\";s:8:\"priority\";s:4:\"core\";}}}", "yes");
INSERT INTO `d1_options` VALUES("356", "g1_theme03_use_dynamic_style_cache", "1", "yes");

/* INSERT TABLE DATA: d1_postmeta */
INSERT INTO `d1_postmeta` VALUES("2", "4", "_g1_gmap_lat", "12.72");
INSERT INTO `d1_postmeta` VALUES("3", "4", "_g1_gmap_long", "77.81999999999994");
INSERT INTO `d1_postmeta` VALUES("4", "4", "_g1_gmap", "a:23:{s:9:\"map_width\";s:0:\"\";s:10:\"map_height\";s:3:\"380\";s:14:\"map_full_width\";s:8:\"standard\";s:7:\"map_lat\";s:5:\"12.72\";s:8:\"map_long\";s:17:\"77.81999999999994\";s:8:\"map_zoom\";s:2:\"15\";s:8:\"map_type\";s:7:\"roadmap\";s:16:\"map_type_control\";s:10:\"horizontal\";s:16:\"map_zoom_control\";s:5:\"small\";s:17:\"map_scale_control\";s:4:\"none\";s:23:\"map_street_view_control\";s:4:\"none\";s:15:\"map_pan_control\";s:8:\"standard\";s:20:\"map_overview_control\";s:4:\"none\";s:13:\"map_draggable\";s:8:\"standard\";s:24:\"map_scroll_wheel_to_zoom\";s:4:\"none\";s:24:\"map_double_click_to_zoom\";s:8:\"standard\";s:12:\"map_parallax\";s:8:\"standard\";s:17:\"map_custom_colors\";s:8:\"standard\";s:13:\"map_color_hue\";s:1:\"0\";s:20:\"map_color_saturation\";s:4:\"-100\";s:19:\"map_color_lightness\";s:1:\"0\";s:15:\"map_color_gamma\";s:1:\"1\";s:20:\"map_invert_lightness\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("5", "5", "_g1_gmap_id", "4");
INSERT INTO `d1_postmeta` VALUES("6", "5", "_g1_gmap_marker_lat", "40.714353");
INSERT INTO `d1_postmeta` VALUES("7", "5", "_g1_gmap_marker_long", "-74.005973");
INSERT INTO `d1_postmeta` VALUES("8", "5", "_g1_gmap_marker", "a:8:{s:3:\"lat\";s:9:\"40.714353\";s:4:\"long\";s:10:\"-74.005973\";s:5:\"label\";s:6:\"Marker\";s:7:\"icon_id\";s:0:\"\";s:9:\"icon_path\";s:0:\"\";s:4:\"info\";N;s:10:\"info_state\";s:4:\"none\";s:10:\"visibility\";s:8:\"standard\";}");
INSERT INTO `d1_postmeta` VALUES("3548", "2322", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("368", "240", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("369", "240", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("370", "240", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("371", "240", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("372", "240", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("373", "240", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("375", "240", "_wp_old_slug", "my-work-01");
INSERT INTO `d1_postmeta` VALUES("376", "241", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("377", "241", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("378", "241", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("379", "241", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("380", "241", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("381", "241", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("383", "241", "_wp_old_slug", "my-work-02");
INSERT INTO `d1_postmeta` VALUES("384", "242", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("385", "242", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("386", "242", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("387", "242", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("388", "242", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("389", "242", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("391", "242", "_wp_old_slug", "my-work-03");
INSERT INTO `d1_postmeta` VALUES("392", "243", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("393", "243", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("394", "243", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("395", "243", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("396", "243", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("397", "243", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("399", "243", "_wp_old_slug", "my-work-04");
INSERT INTO `d1_postmeta` VALUES("400", "244", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("401", "244", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("402", "244", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("403", "244", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("404", "244", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("405", "244", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("407", "244", "_wp_old_slug", "my-work-05");
INSERT INTO `d1_postmeta` VALUES("408", "245", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("409", "245", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("410", "245", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("411", "245", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("412", "245", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("413", "245", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("415", "245", "_wp_old_slug", "my-work-06");
INSERT INTO `d1_postmeta` VALUES("416", "246", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("417", "246", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("418", "246", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("419", "246", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("420", "246", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("421", "246", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("423", "246", "_wp_old_slug", "my-work-07");
INSERT INTO `d1_postmeta` VALUES("424", "248", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("425", "248", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("426", "248", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:14:\"overview_right\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("427", "248", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("428", "248", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("429", "248", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("431", "248", "_wp_old_slug", "my-work-08");
INSERT INTO `d1_postmeta` VALUES("432", "248", "_wp_old_slug", "praesent-egestas-neque-vel");
INSERT INTO `d1_postmeta` VALUES("433", "279", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("434", "279", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("435", "279", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:13:\"simple_slider\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("436", "279", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("437", "279", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("438", "279", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("439", "489", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("440", "489", "_g1", "a:12:{s:20:\"simple_slider_layout\";s:8:\"viewport\";s:18:\"simple_slider_size\";s:25:\"g1_simple_slider_standard\";s:23:\"simple_slider_animation\";s:10:\"slide-left\";s:32:\"simple_slider_animation_duration\";s:1:\"1\";s:29:\"simple_slider_slideshow_speed\";s:1:\"4\";s:22:\"simple_slider_autoplay\";s:4:\"none\";s:24:\"simple_slider_fullscreen\";s:8:\"standard\";s:29:\"simple_slider_coin_navigation\";s:8:\"standard\";s:34:\"simple_slider_direction_navigation\";s:8:\"standard\";s:26:\"simple_slider_progress_bar\";s:8:\"standard\";s:19:\"simple_slider_width\";s:21:\"g1_simple_slider_semi\";s:20:\"simple_slider_height\";s:3:\"380\";}");
INSERT INTO `d1_postmeta` VALUES("441", "495", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("442", "495", "_g1", "a:12:{s:20:\"simple_slider_layout\";s:8:\"kenburns\";s:18:\"simple_slider_size\";s:4:\"full\";s:23:\"simple_slider_animation\";s:4:\"fade\";s:32:\"simple_slider_animation_duration\";s:1:\"2\";s:29:\"simple_slider_slideshow_speed\";s:1:\"4\";s:22:\"simple_slider_autoplay\";s:8:\"standard\";s:24:\"simple_slider_fullscreen\";s:8:\"standard\";s:29:\"simple_slider_coin_navigation\";s:6:\"thumbs\";s:34:\"simple_slider_direction_navigation\";s:8:\"standard\";s:26:\"simple_slider_progress_bar\";s:8:\"standard\";s:19:\"simple_slider_width\";s:21:\"g1_simple_slider_semi\";s:20:\"simple_slider_height\";s:3:\"380\";}");
INSERT INTO `d1_postmeta` VALUES("443", "499", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("444", "499", "_g1", "a:12:{s:20:\"simple_slider_layout\";s:5:\"relay\";s:18:\"simple_slider_size\";s:8:\"standard\";s:23:\"simple_slider_animation\";s:10:\"slide-left\";s:32:\"simple_slider_animation_duration\";s:3:\"1.3\";s:29:\"simple_slider_slideshow_speed\";s:1:\"3\";s:22:\"simple_slider_autoplay\";s:4:\"none\";s:24:\"simple_slider_fullscreen\";s:8:\"standard\";s:29:\"simple_slider_coin_navigation\";s:6:\"thumbs\";s:34:\"simple_slider_direction_navigation\";s:8:\"standard\";s:26:\"simple_slider_progress_bar\";s:8:\"standard\";s:19:\"simple_slider_width\";s:21:\"g1_simple_slider_semi\";s:20:\"simple_slider_height\";s:3:\"420\";}");
INSERT INTO `d1_postmeta` VALUES("449", "511", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("450", "511", "_g1", "a:12:{s:20:\"simple_slider_layout\";s:8:\"standout\";s:18:\"simple_slider_size\";s:4:\"semi\";s:23:\"simple_slider_animation\";s:10:\"slide-left\";s:32:\"simple_slider_animation_duration\";s:1:\"1\";s:29:\"simple_slider_slideshow_speed\";s:1:\"4\";s:22:\"simple_slider_autoplay\";s:4:\"none\";s:24:\"simple_slider_fullscreen\";s:8:\"standard\";s:29:\"simple_slider_coin_navigation\";s:4:\"none\";s:34:\"simple_slider_direction_navigation\";s:8:\"standard\";s:26:\"simple_slider_progress_bar\";s:8:\"standard\";s:19:\"simple_slider_width\";s:21:\"g1_simple_slider_semi\";s:20:\"simple_slider_height\";s:3:\"480\";}");
INSERT INTO `d1_postmeta` VALUES("451", "531", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("452", "531", "_g1", "a:12:{s:20:\"simple_slider_layout\";s:6:\"simple\";s:18:\"simple_slider_size\";s:25:\"g1_simple_slider_standard\";s:23:\"simple_slider_animation\";s:10:\"slide-left\";s:32:\"simple_slider_animation_duration\";s:1:\"1\";s:29:\"simple_slider_slideshow_speed\";s:1:\"4\";s:22:\"simple_slider_autoplay\";s:8:\"standard\";s:24:\"simple_slider_fullscreen\";s:8:\"standard\";s:29:\"simple_slider_coin_navigation\";s:6:\"thumbs\";s:34:\"simple_slider_direction_navigation\";s:8:\"standard\";s:26:\"simple_slider_progress_bar\";s:8:\"standard\";s:19:\"simple_slider_width\";s:21:\"g1_simple_slider_semi\";s:20:\"simple_slider_height\";s:3:\"380\";}");
INSERT INTO `d1_postmeta` VALUES("467", "249", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("468", "249", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("469", "249", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:13:\"overview_left\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:13:\"simple_slider\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("470", "249", "_format_video_embed", "http://www.youtube.com/watch?v=YE7VzlLtp-4");
INSERT INTO `d1_postmeta` VALUES("471", "249", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("472", "249", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("474", "249", "_wp_old_slug", "my-work-09");
INSERT INTO `d1_postmeta` VALUES("475", "249", "_wp_old_slug", "nullam-metus-nisi-gravida-eget-egestas");
INSERT INTO `d1_postmeta` VALUES("476", "249", "_oembed_d7d431484a0404ca62f73df70c94b28f", "<iframe width=\"968\" height=\"545\" src=\"http://www.youtube.com/embed/YE7VzlLtp-4?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>");
INSERT INTO `d1_postmeta` VALUES("477", "249", "_oembed_10e665f3308d1ec238ffb710ae902736", "<iframe width=\"636\" height=\"358\" src=\"http://www.youtube.com/embed/YE7VzlLtp-4?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>");
INSERT INTO `d1_postmeta` VALUES("478", "250", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("479", "250", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("480", "250", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:13:\"content_right\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:13:\"simple_slider\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("481", "250", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("482", "250", "_format_audio_embed", "http://3clicks.bringthepixel.com/wp-content/import_attachments/2013/04/g1_loop.mp3");
INSERT INTO `d1_postmeta` VALUES("483", "250", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("485", "251", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("486", "251", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("487", "251", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("488", "251", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("489", "251", "_format_audio_embed", "/wp-content/uploads/2013/04/g1_loop.mp3");
INSERT INTO `d1_postmeta` VALUES("490", "251", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("491", "251", "_wp_old_slug", "my-work-11");
INSERT INTO `d1_postmeta` VALUES("492", "252", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("493", "252", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("494", "252", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:12:\"content_left\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("495", "252", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("496", "252", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("497", "252", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("499", "252", "_wp_old_slug", "my-work-12");
INSERT INTO `d1_postmeta` VALUES("500", "253", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("501", "253", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("502", "253", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("503", "253", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("504", "253", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("505", "253", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("507", "253", "_wp_old_slug", "my-work-13");
INSERT INTO `d1_postmeta` VALUES("508", "253", "_format_link_url", "http://themeforest.net/user/bringthepixel");
INSERT INTO `d1_postmeta` VALUES("509", "254", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("510", "254", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("511", "254", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("512", "254", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("513", "254", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("514", "254", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("515", "254", "_wp_old_slug", "my-work-14");
INSERT INTO `d1_postmeta` VALUES("517", "255", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("518", "255", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("519", "255", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:13:\"sidebar_right\";s:24:\"single_element_sidebar_1\";s:11:\"single-work\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("520", "255", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("521", "255", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("522", "255", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("523", "255", "_wp_old_slug", "my-work-15");
INSERT INTO `d1_postmeta` VALUES("525", "255", "_wp_old_slug", "w-right-sideba");
INSERT INTO `d1_postmeta` VALUES("526", "256", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("527", "256", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("528", "256", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:12:\"sidebar_left\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("529", "256", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("530", "256", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("531", "256", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("532", "256", "_wp_old_slug", "my-work-16");
INSERT INTO `d1_postmeta` VALUES("534", "256", "_wp_old_slug", "w-left-sidebar");
INSERT INTO `d1_postmeta` VALUES("535", "257", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("536", "257", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("537", "257", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:4:\"full\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:23:\"revslider_home-slider-1\";}");
INSERT INTO `d1_postmeta` VALUES("538", "257", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("539", "257", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("540", "257", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("541", "257", "_wp_old_slug", "my-work-17");
INSERT INTO `d1_postmeta` VALUES("543", "257", "_wp_old_slug", "w-full-width");
INSERT INTO `d1_postmeta` VALUES("544", "258", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("545", "258", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("546", "258", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:4:\"list\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("547", "258", "_format_video_embed", "http://www.youtube.com/watch?v=YE7VzlLtp-4&wmode=transparent&rel=0\n\n");
INSERT INTO `d1_postmeta` VALUES("548", "258", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("549", "258", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("550", "258", "_wp_old_slug", "my-work-18");
INSERT INTO `d1_postmeta` VALUES("551", "258", "_wp_old_slug", "post-formats-ok");
INSERT INTO `d1_postmeta` VALUES("553", "258", "_oembed_ce64c8192b516ed3a9311ac43a6ddd79", "<iframe width=\"968\" height=\"545\" src=\"http://www.youtube.com/embed/YE7VzlLtp-4?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>");
INSERT INTO `d1_postmeta` VALUES("554", "259", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("555", "259", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("556", "259", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("557", "259", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("558", "259", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("559", "259", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("560", "259", "_wp_old_slug", "my-work-19");
INSERT INTO `d1_postmeta` VALUES("570", "262", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("571", "262", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("572", "262", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:4:\"list\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("573", "262", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("574", "262", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("575", "262", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("576", "262", "_wp_old_slug", "my-work-21");
INSERT INTO `d1_postmeta` VALUES("586", "2024", "_menu_item_type", "custom");
INSERT INTO `d1_postmeta` VALUES("587", "2024", "_menu_item_menu_item_parent", "0");
INSERT INTO `d1_postmeta` VALUES("588", "2024", "_menu_item_object_id", "2024");
INSERT INTO `d1_postmeta` VALUES("589", "2024", "_menu_item_object", "custom");
INSERT INTO `d1_postmeta` VALUES("590", "2024", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("591", "2024", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("592", "2024", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("593", "2024", "_menu_item_url", "http://hrd.softons.cu.cc/");
INSERT INTO `d1_postmeta` VALUES("690", "124", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("691", "124", "_wp_page_template", "g1_template_page_full_sections.php");
INSERT INTO `d1_postmeta` VALUES("692", "124", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("693", "124", "_g1", "a:5:{s:24:\"single_element_media_box\";s:0:\"\";s:21:\"single_element_slider\";s:20:\"revslider_big-slider\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:4:\"none\";s:20:\"single_element_title\";s:4:\"none\";}");
INSERT INTO `d1_postmeta` VALUES("1147", "67", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1148", "67", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1149", "67", "_g1", "a:11:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1150", "67", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1151", "67", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1152", "74", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1153", "74", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1154", "74", "_g1", "a:11:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1155", "74", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1156", "74", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1157", "89", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1158", "89", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1159", "89", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1160", "89", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1161", "89", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1163", "90", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1164", "90", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1165", "90", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1166", "90", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1167", "90", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1169", "90", "_wp_old_slug", "90");
INSERT INTO `d1_postmeta` VALUES("1170", "91", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1171", "91", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1172", "91", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1173", "91", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1174", "91", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1176", "91", "_wp_old_slug", "91");
INSERT INTO `d1_postmeta` VALUES("1177", "94", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1178", "94", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1179", "94", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1180", "94", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1181", "94", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1183", "95", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1184", "95", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1185", "95", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1186", "95", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1187", "95", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1189", "95", "_wp_old_slug", "95");
INSERT INTO `d1_postmeta` VALUES("1190", "96", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1191", "96", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1192", "96", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1193", "96", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1194", "96", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1196", "96", "_wp_old_slug", "96");
INSERT INTO `d1_postmeta` VALUES("1197", "97", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1198", "97", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1199", "97", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1200", "97", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1201", "97", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1203", "97", "_wp_old_slug", "97");
INSERT INTO `d1_postmeta` VALUES("1204", "98", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1205", "98", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1206", "98", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1207", "98", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1208", "98", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1210", "98", "_wp_old_slug", "98");
INSERT INTO `d1_postmeta` VALUES("1211", "100", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1212", "100", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1213", "100", "_g1", "a:11:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1214", "100", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1215", "100", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1216", "105", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1217", "105", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1218", "105", "_g1", "a:11:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1219", "105", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1220", "105", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1221", "105", "_oembed_33d3d24e5446df66b0a127d8399b2e6e", "{{unknown}}");
INSERT INTO `d1_postmeta` VALUES("1222", "105", "_oembed_302080e9ff5fd164b236feb44ecfa8ff", "{{unknown}}");
INSERT INTO `d1_postmeta` VALUES("1223", "106", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1224", "106", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1225", "106", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1226", "106", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1227", "106", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1228", "439", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1229", "439", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1230", "439", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1231", "439", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1232", "439", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1233", "439", "_wp_old_slug", "439");
INSERT INTO `d1_postmeta` VALUES("1234", "439", "_wp_old_slug", "post-post-format-aside");
INSERT INTO `d1_postmeta` VALUES("1235", "587", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1236", "587", "_g1_subtitle", "A Post Template Example");
INSERT INTO `d1_postmeta` VALUES("1237", "587", "_g1", "a:12:{s:8:\"template\";s:12:\"sidebar_left\";s:21:\"single_element_slider\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1238", "587", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1239", "587", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1241", "587", "_wp_old_slug", "left-sidebar");
INSERT INTO `d1_postmeta` VALUES("1242", "588", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1243", "588", "_g1_subtitle", "A Post Template Example");
INSERT INTO `d1_postmeta` VALUES("1244", "588", "_g1", "a:12:{s:8:\"template\";s:13:\"sidebar_right\";s:21:\"single_element_slider\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1245", "588", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1246", "588", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1248", "588", "_wp_old_slug", "postright-sidebar");
INSERT INTO `d1_postmeta` VALUES("1249", "589", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1250", "589", "_g1_subtitle", "A Post Template Example");
INSERT INTO `d1_postmeta` VALUES("1251", "589", "_g1", "a:12:{s:8:\"template\";s:4:\"full\";s:21:\"single_element_slider\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1252", "589", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1253", "589", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1255", "589", "_wp_old_slug", "postfull-width");
INSERT INTO `d1_postmeta` VALUES("1256", "1153", "original_post_id", "418");
INSERT INTO `d1_postmeta` VALUES("1257", "1153", "_wp_old_slug", "418");
INSERT INTO `d1_postmeta` VALUES("1258", "1164", "standard_seo_post_level_layout", "");
INSERT INTO `d1_postmeta` VALUES("1259", "1164", "standard_link_url_field", "");
INSERT INTO `d1_postmeta` VALUES("1260", "1164", "standard_seo_post_meta_description", "");
INSERT INTO `d1_postmeta` VALUES("1261", "1164", "original_post_id", "922");
INSERT INTO `d1_postmeta` VALUES("1262", "1164", "_wp_old_slug", "922");
INSERT INTO `d1_postmeta` VALUES("1263", "1241", "_publicize_pending", "1");
INSERT INTO `d1_postmeta` VALUES("1264", "1241", "standard_seo_post_level_layout", "");
INSERT INTO `d1_postmeta` VALUES("1265", "1241", "standard_link_url_field", "");
INSERT INTO `d1_postmeta` VALUES("1266", "1241", "standard_seo_post_meta_description", "");
INSERT INTO `d1_postmeta` VALUES("1267", "1241", "original_post_id", "1241");
INSERT INTO `d1_postmeta` VALUES("1268", "1241", "_wp_old_slug", "1241");
INSERT INTO `d1_postmeta` VALUES("1269", "1241", "_wp_old_slug", "sticky");
INSERT INTO `d1_postmeta` VALUES("1271", "1241", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1272", "1241", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1273", "1241", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1274", "1241", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1275", "1241", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1276", "17", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1277", "17", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1278", "17", "_g1", "a:12:{s:8:\"template\";s:4:\"full\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1279", "17", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1280", "17", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1282", "17", "_wp_old_slug", "albert-einstein");
INSERT INTO `d1_postmeta` VALUES("1283", "101", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1284", "101", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1285", "101", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1286", "101", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1287", "101", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1288", "101", "_wp_old_slug", "amadeus-classic-elegant-wp-theme");
INSERT INTO `d1_postmeta` VALUES("1289", "101", "_wp_old_slug", "post-post-format-link");
INSERT INTO `d1_postmeta` VALUES("1290", "101", "_oembed_9b1cfee085d9969c8f6ad158f7409430", "{{unknown}}");
INSERT INTO `d1_postmeta` VALUES("1291", "441", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1292", "441", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1293", "441", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1294", "441", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1295", "441", "_format_audio_embed", "/wp-content/uploads/2013/04/g1_loop.mp3");
INSERT INTO `d1_postmeta` VALUES("1296", "441", "_wp_old_slug", "audio-post-format");
INSERT INTO `d1_postmeta` VALUES("1297", "441", "_wp_old_slug", "post-post-format-audio");
INSERT INTO `d1_postmeta` VALUES("1298", "442", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1299", "442", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1300", "442", "_g1", "a:12:{s:8:\"template\";s:4:\"full\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1301", "442", "_format_video_embed", "http://www.youtube.com/watch?v=YE7VzlLtp-4");
INSERT INTO `d1_postmeta` VALUES("1302", "442", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1303", "442", "_wp_old_slug", "video-post-format");
INSERT INTO `d1_postmeta` VALUES("1304", "442", "_wp_old_slug", "post-post-format-video");
INSERT INTO `d1_postmeta` VALUES("1305", "442", "_oembed_d7d431484a0404ca62f73df70c94b28f", "<iframe width=\"968\" height=\"545\" src=\"http://www.youtube.com/embed/YE7VzlLtp-4?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>");
INSERT INTO `d1_postmeta` VALUES("1306", "442", "_oembed_10e665f3308d1ec238ffb710ae902736", "<iframe width=\"636\" height=\"358\" src=\"http://www.youtube.com/embed/YE7VzlLtp-4?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>");
INSERT INTO `d1_postmeta` VALUES("1307", "442", "_oembed_b67a7ac4486656ce760ce38f87bc05c9", "<iframe width=\"239\" height=\"134\" src=\"http://www.youtube.com/embed/YE7VzlLtp-4?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>");
INSERT INTO `d1_postmeta` VALUES("1308", "442", "_oembed_84184e184963c75cb68982be4902aeb9", "<iframe width=\"320\" height=\"180\" src=\"http://www.youtube.com/embed/YE7VzlLtp-4?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>");
INSERT INTO `d1_postmeta` VALUES("1309", "442", "_oembed_3627fcba1ea7453049dc268bec5a8414", "<iframe width=\"482\" height=\"271\" src=\"http://www.youtube.com/embed/YE7VzlLtp-4?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>");
INSERT INTO `d1_postmeta` VALUES("1310", "443", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1311", "443", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1312", "443", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1313", "443", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1314", "443", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1316", "443", "_wp_old_slug", "image-post-format");
INSERT INTO `d1_postmeta` VALUES("1317", "443", "_wp_old_slug", "post-post-format-image");
INSERT INTO `d1_postmeta` VALUES("1318", "444", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1319", "444", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1320", "444", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:13:\"simple_slider\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1321", "444", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1322", "444", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1323", "444", "_wp_old_slug", "gallerz-post-format");
INSERT INTO `d1_postmeta` VALUES("1324", "444", "_wp_old_slug", "post-post-format-gallery");
INSERT INTO `d1_postmeta` VALUES("1325", "450", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1326", "450", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1327", "450", "_g1", "a:12:{s:8:\"template\";s:13:\"sidebar_right\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1328", "450", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1329", "450", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1331", "450", "_wp_old_slug", "standard-post-format");
INSERT INTO `d1_postmeta` VALUES("1332", "450", "_wp_old_slug", "post-post-format-standard");
INSERT INTO `d1_postmeta` VALUES("1391", "1867", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1392", "1867", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1393", "1867", "_g1", "a:12:{s:8:\"template\";s:13:\"overview_left\";s:21:\"single_element_slider\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1394", "1867", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1395", "1867", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1397", "1867", "_wp_old_slug", "postcontent-on-left");
INSERT INTO `d1_postmeta` VALUES("1398", "1868", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1399", "1868", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1400", "1868", "_g1", "a:12:{s:8:\"template\";s:14:\"overview_right\";s:21:\"single_element_slider\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:4:\"list\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1401", "1868", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1402", "1868", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1404", "1868", "_wp_old_slug", "post-overview-on-right");
INSERT INTO `d1_postmeta` VALUES("1405", "2013", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1406", "2013", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1407", "2013", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1408", "2013", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1409", "2013", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1410", "2013", "_wp_old_slug", "quote-post-format");
INSERT INTO `d1_postmeta` VALUES("1480", "2053", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("1481", "2053", "_menu_item_menu_item_parent", "0");
INSERT INTO `d1_postmeta` VALUES("1482", "2053", "_menu_item_object_id", "124");
INSERT INTO `d1_postmeta` VALUES("1483", "2053", "_menu_item_object", "page");
INSERT INTO `d1_postmeta` VALUES("1484", "2053", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("1485", "2053", "_menu_item_classes", "a:1:{i:0;s:14:\"g1-type-tile-3\";}");
INSERT INTO `d1_postmeta` VALUES("1486", "2053", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("1487", "2053", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("1576", "2065", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("1577", "2065", "_menu_item_menu_item_parent", "2053");
INSERT INTO `d1_postmeta` VALUES("1578", "2065", "_menu_item_object_id", "124");
INSERT INTO `d1_postmeta` VALUES("1579", "2065", "_menu_item_object", "page");
INSERT INTO `d1_postmeta` VALUES("1580", "2065", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("1581", "2065", "_menu_item_classes", "a:1:{i:0;s:17:\"g1-menu-icon-home\";}");
INSERT INTO `d1_postmeta` VALUES("1582", "2065", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("1583", "2065", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("3472", "4", "slide_template", "default");
INSERT INTO `d1_postmeta` VALUES("3471", "4", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("3470", "4", "_edit_lock", "1408647547:1");
INSERT INTO `d1_postmeta` VALUES("3547", "2322", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("1919", "240", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1920", "240", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1921", "240", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1922", "240", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1923", "240", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1924", "240", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1926", "240", "_wp_old_slug", "my-work-01");
INSERT INTO `d1_postmeta` VALUES("1927", "241", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1928", "241", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1929", "241", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1930", "241", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1931", "241", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1932", "241", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1934", "241", "_wp_old_slug", "my-work-02");
INSERT INTO `d1_postmeta` VALUES("1935", "242", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1936", "242", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1937", "242", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1938", "242", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1939", "242", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1940", "242", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1942", "242", "_wp_old_slug", "my-work-03");
INSERT INTO `d1_postmeta` VALUES("1943", "243", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1944", "243", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1945", "243", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1946", "243", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1947", "243", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1948", "243", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1950", "243", "_wp_old_slug", "my-work-04");
INSERT INTO `d1_postmeta` VALUES("1951", "244", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1952", "244", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1953", "244", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1954", "244", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1955", "244", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1956", "244", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1958", "244", "_wp_old_slug", "my-work-05");
INSERT INTO `d1_postmeta` VALUES("1959", "245", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1960", "245", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1961", "245", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1962", "245", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1963", "245", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1964", "245", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1966", "245", "_wp_old_slug", "my-work-06");
INSERT INTO `d1_postmeta` VALUES("1967", "246", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1968", "246", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1969", "246", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1970", "246", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1971", "246", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1972", "246", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1974", "246", "_wp_old_slug", "my-work-07");
INSERT INTO `d1_postmeta` VALUES("1975", "248", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1976", "248", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1977", "248", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:14:\"overview_right\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1978", "248", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1979", "248", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1980", "248", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1982", "248", "_wp_old_slug", "my-work-08");
INSERT INTO `d1_postmeta` VALUES("1983", "248", "_wp_old_slug", "praesent-egestas-neque-vel");
INSERT INTO `d1_postmeta` VALUES("1984", "279", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1985", "279", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("1986", "279", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:13:\"simple_slider\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1987", "279", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("1988", "279", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("1989", "279", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("1990", "489", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1991", "489", "_g1", "a:12:{s:20:\"simple_slider_layout\";s:8:\"viewport\";s:18:\"simple_slider_size\";s:25:\"g1_simple_slider_standard\";s:23:\"simple_slider_animation\";s:10:\"slide-left\";s:32:\"simple_slider_animation_duration\";s:1:\"1\";s:29:\"simple_slider_slideshow_speed\";s:1:\"4\";s:22:\"simple_slider_autoplay\";s:4:\"none\";s:24:\"simple_slider_fullscreen\";s:8:\"standard\";s:29:\"simple_slider_coin_navigation\";s:8:\"standard\";s:34:\"simple_slider_direction_navigation\";s:8:\"standard\";s:26:\"simple_slider_progress_bar\";s:8:\"standard\";s:19:\"simple_slider_width\";s:21:\"g1_simple_slider_semi\";s:20:\"simple_slider_height\";s:3:\"380\";}");
INSERT INTO `d1_postmeta` VALUES("1992", "495", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1993", "495", "_g1", "a:12:{s:20:\"simple_slider_layout\";s:8:\"kenburns\";s:18:\"simple_slider_size\";s:4:\"full\";s:23:\"simple_slider_animation\";s:4:\"fade\";s:32:\"simple_slider_animation_duration\";s:1:\"2\";s:29:\"simple_slider_slideshow_speed\";s:1:\"4\";s:22:\"simple_slider_autoplay\";s:8:\"standard\";s:24:\"simple_slider_fullscreen\";s:8:\"standard\";s:29:\"simple_slider_coin_navigation\";s:6:\"thumbs\";s:34:\"simple_slider_direction_navigation\";s:8:\"standard\";s:26:\"simple_slider_progress_bar\";s:8:\"standard\";s:19:\"simple_slider_width\";s:21:\"g1_simple_slider_semi\";s:20:\"simple_slider_height\";s:3:\"380\";}");
INSERT INTO `d1_postmeta` VALUES("1994", "499", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("1995", "499", "_g1", "a:12:{s:20:\"simple_slider_layout\";s:5:\"relay\";s:18:\"simple_slider_size\";s:8:\"standard\";s:23:\"simple_slider_animation\";s:10:\"slide-left\";s:32:\"simple_slider_animation_duration\";s:3:\"1.3\";s:29:\"simple_slider_slideshow_speed\";s:1:\"3\";s:22:\"simple_slider_autoplay\";s:4:\"none\";s:24:\"simple_slider_fullscreen\";s:8:\"standard\";s:29:\"simple_slider_coin_navigation\";s:6:\"thumbs\";s:34:\"simple_slider_direction_navigation\";s:8:\"standard\";s:26:\"simple_slider_progress_bar\";s:8:\"standard\";s:19:\"simple_slider_width\";s:21:\"g1_simple_slider_semi\";s:20:\"simple_slider_height\";s:3:\"420\";}");
INSERT INTO `d1_postmeta` VALUES("2000", "511", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2001", "511", "_g1", "a:12:{s:20:\"simple_slider_layout\";s:8:\"standout\";s:18:\"simple_slider_size\";s:4:\"semi\";s:23:\"simple_slider_animation\";s:10:\"slide-left\";s:32:\"simple_slider_animation_duration\";s:1:\"1\";s:29:\"simple_slider_slideshow_speed\";s:1:\"4\";s:22:\"simple_slider_autoplay\";s:4:\"none\";s:24:\"simple_slider_fullscreen\";s:8:\"standard\";s:29:\"simple_slider_coin_navigation\";s:4:\"none\";s:34:\"simple_slider_direction_navigation\";s:8:\"standard\";s:26:\"simple_slider_progress_bar\";s:8:\"standard\";s:19:\"simple_slider_width\";s:21:\"g1_simple_slider_semi\";s:20:\"simple_slider_height\";s:3:\"480\";}");
INSERT INTO `d1_postmeta` VALUES("2002", "531", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2003", "531", "_g1", "a:12:{s:20:\"simple_slider_layout\";s:6:\"simple\";s:18:\"simple_slider_size\";s:25:\"g1_simple_slider_standard\";s:23:\"simple_slider_animation\";s:10:\"slide-left\";s:32:\"simple_slider_animation_duration\";s:1:\"1\";s:29:\"simple_slider_slideshow_speed\";s:1:\"4\";s:22:\"simple_slider_autoplay\";s:8:\"standard\";s:24:\"simple_slider_fullscreen\";s:8:\"standard\";s:29:\"simple_slider_coin_navigation\";s:6:\"thumbs\";s:34:\"simple_slider_direction_navigation\";s:8:\"standard\";s:26:\"simple_slider_progress_bar\";s:8:\"standard\";s:19:\"simple_slider_width\";s:21:\"g1_simple_slider_semi\";s:20:\"simple_slider_height\";s:3:\"380\";}");
INSERT INTO `d1_postmeta` VALUES("2012", "249", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2013", "249", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2014", "249", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:13:\"overview_left\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:13:\"simple_slider\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2015", "249", "_format_video_embed", "http://www.youtube.com/watch?v=YE7VzlLtp-4");
INSERT INTO `d1_postmeta` VALUES("2016", "249", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2017", "249", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2019", "249", "_wp_old_slug", "my-work-09");
INSERT INTO `d1_postmeta` VALUES("2020", "249", "_wp_old_slug", "nullam-metus-nisi-gravida-eget-egestas");
INSERT INTO `d1_postmeta` VALUES("2021", "249", "_oembed_d7d431484a0404ca62f73df70c94b28f", "<iframe width=\"968\" height=\"545\" src=\"http://www.youtube.com/embed/YE7VzlLtp-4?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>");
INSERT INTO `d1_postmeta` VALUES("2022", "249", "_oembed_10e665f3308d1ec238ffb710ae902736", "<iframe width=\"636\" height=\"358\" src=\"http://www.youtube.com/embed/YE7VzlLtp-4?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>");
INSERT INTO `d1_postmeta` VALUES("2023", "250", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2024", "250", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2025", "250", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:13:\"content_right\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:13:\"simple_slider\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2026", "250", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2027", "250", "_format_audio_embed", "http://3clicks.bringthepixel.com/wp-content/import_attachments/2013/04/g1_loop.mp3");
INSERT INTO `d1_postmeta` VALUES("2028", "250", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2030", "251", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2031", "251", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2032", "251", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2033", "251", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2034", "251", "_format_audio_embed", "/wp-content/uploads/2013/04/g1_loop.mp3");
INSERT INTO `d1_postmeta` VALUES("2035", "251", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2036", "251", "_wp_old_slug", "my-work-11");
INSERT INTO `d1_postmeta` VALUES("2037", "252", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2038", "252", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2039", "252", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:12:\"content_left\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2040", "252", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2041", "252", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2042", "252", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2044", "252", "_wp_old_slug", "my-work-12");
INSERT INTO `d1_postmeta` VALUES("2045", "253", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2046", "253", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2047", "253", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2048", "253", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2049", "253", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2050", "253", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2052", "253", "_wp_old_slug", "my-work-13");
INSERT INTO `d1_postmeta` VALUES("2053", "253", "_format_link_url", "http://themeforest.net/user/bringthepixel");
INSERT INTO `d1_postmeta` VALUES("2054", "254", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2055", "254", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2056", "254", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2057", "254", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2058", "254", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2059", "254", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2060", "254", "_wp_old_slug", "my-work-14");
INSERT INTO `d1_postmeta` VALUES("2062", "255", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2063", "255", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2064", "255", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:13:\"sidebar_right\";s:24:\"single_element_sidebar_1\";s:11:\"single-work\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2065", "255", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2066", "255", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2067", "255", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2068", "255", "_wp_old_slug", "my-work-15");
INSERT INTO `d1_postmeta` VALUES("2070", "255", "_wp_old_slug", "w-right-sideba");
INSERT INTO `d1_postmeta` VALUES("2071", "256", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2072", "256", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2073", "256", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:12:\"sidebar_left\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2074", "256", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2075", "256", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2076", "256", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2077", "256", "_wp_old_slug", "my-work-16");
INSERT INTO `d1_postmeta` VALUES("2079", "256", "_wp_old_slug", "w-left-sidebar");
INSERT INTO `d1_postmeta` VALUES("2080", "257", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2081", "257", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2082", "257", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:4:\"full\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:23:\"revslider_home-slider-1\";}");
INSERT INTO `d1_postmeta` VALUES("2083", "257", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2084", "257", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2085", "257", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2086", "257", "_wp_old_slug", "my-work-17");
INSERT INTO `d1_postmeta` VALUES("2088", "257", "_wp_old_slug", "w-full-width");
INSERT INTO `d1_postmeta` VALUES("2089", "258", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2090", "258", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2091", "258", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:4:\"list\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2092", "258", "_format_video_embed", "http://www.youtube.com/watch?v=YE7VzlLtp-4&wmode=transparent&rel=0\n\n");
INSERT INTO `d1_postmeta` VALUES("2093", "258", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2094", "258", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2095", "258", "_wp_old_slug", "my-work-18");
INSERT INTO `d1_postmeta` VALUES("2096", "258", "_wp_old_slug", "post-formats-ok");
INSERT INTO `d1_postmeta` VALUES("2098", "258", "_oembed_ce64c8192b516ed3a9311ac43a6ddd79", "<iframe width=\"968\" height=\"545\" src=\"http://www.youtube.com/embed/YE7VzlLtp-4?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>");
INSERT INTO `d1_postmeta` VALUES("2099", "259", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2100", "259", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2101", "259", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2102", "259", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2103", "259", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2104", "259", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2105", "259", "_wp_old_slug", "my-work-19");
INSERT INTO `d1_postmeta` VALUES("3490", "2227", "_wp_attached_file", "2014/10/logo.png");
INSERT INTO `d1_postmeta` VALUES("3491", "2227", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:900;s:6:\"height\";i:400;s:4:\"file\";s:16:\"2014/10/logo.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"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:16:\"logo-300x133.png\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"g1_two_third\";a:4:{s:4:\"file\";s:16:\"logo-636x282.png\";s:5:\"width\";i:636;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"g1_one_half\";a:4:{s:4:\"file\";s:16:\"logo-482x271.png\";s:5:\"width\";i:482;s:6:\"height\";i:271;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:16:\"logo-320x180.png\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"g1_one_third_flexible\";a:4:{s:4:\"file\";s:16:\"logo-320x142.png\";s:5:\"width\";i:320;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:16:\"logo-239x134.png\";s:5:\"width\";i:239;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"g1_one_fourth_flexible\";a:4:{s:4:\"file\";s:16:\"logo-239x106.png\";s:5:\"width\";i:239;s:6:\"height\";i:106;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:14:\"logo-55x55.png\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3489", "2217", "_g1", "a:5:{s:24:\"single_element_media_box\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("3487", "2217", "_g1_gmaps_metabox", "a:2:{s:17:\"precontent_map_id\";s:4:\"none\";s:16:\"prefooter_map_id\";s:4:\"none\";}");
INSERT INTO `d1_postmeta` VALUES("3488", "2217", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("3486", "2217", "slide_template", "default");
INSERT INTO `d1_postmeta` VALUES("3485", "2217", "g1_page_builder_state", "active");
INSERT INTO `d1_postmeta` VALUES("2115", "262", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2116", "262", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2117", "262", "_g1", "a:13:{s:13:\"title_linking\";s:8:\"standard\";s:16:\"button_1_linking\";s:8:\"standard\";s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:4:\"list\";s:19:\"single_element_date\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2118", "262", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2119", "262", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2120", "262", "_g1_custom_background", "a:5:{s:5:\"color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"left top\";s:10:\"attachment\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2121", "262", "_wp_old_slug", "my-work-21");
INSERT INTO `d1_postmeta` VALUES("2139", "2106", "_menu_item_type", "custom");
INSERT INTO `d1_postmeta` VALUES("2140", "2106", "_menu_item_menu_item_parent", "0");
INSERT INTO `d1_postmeta` VALUES("2141", "2106", "_menu_item_object_id", "2106");
INSERT INTO `d1_postmeta` VALUES("2142", "2106", "_menu_item_object", "custom");
INSERT INTO `d1_postmeta` VALUES("2143", "2106", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("2144", "2106", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2145", "2106", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("2146", "2106", "_menu_item_url", "mailto:info@softons.com");
INSERT INTO `d1_postmeta` VALUES("2147", "2107", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("2148", "2107", "_menu_item_menu_item_parent", "2176");
INSERT INTO `d1_postmeta` VALUES("2149", "2107", "_menu_item_object_id", "257");
INSERT INTO `d1_postmeta` VALUES("2150", "2107", "_menu_item_object", "g1_work");
INSERT INTO `d1_postmeta` VALUES("2151", "2107", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("2152", "2107", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2153", "2107", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("2154", "2107", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("2155", "2108", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("2156", "2108", "_menu_item_menu_item_parent", "2176");
INSERT INTO `d1_postmeta` VALUES("2157", "2108", "_menu_item_object_id", "256");
INSERT INTO `d1_postmeta` VALUES("2158", "2108", "_menu_item_object", "g1_work");
INSERT INTO `d1_postmeta` VALUES("2159", "2108", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("2160", "2108", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2161", "2108", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("2162", "2108", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("2163", "2109", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("2164", "2109", "_menu_item_menu_item_parent", "2176");
INSERT INTO `d1_postmeta` VALUES("2165", "2109", "_menu_item_object_id", "255");
INSERT INTO `d1_postmeta` VALUES("2166", "2109", "_menu_item_object", "g1_work");
INSERT INTO `d1_postmeta` VALUES("2167", "2109", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("2168", "2109", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2169", "2109", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("2170", "2109", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("3484", "2217", "_wp_page_template", "g1_template_page_full_sections.php");
INSERT INTO `d1_postmeta` VALUES("3483", "2217", "_edit_last", "2");
INSERT INTO `d1_postmeta` VALUES("3482", "2217", "_edit_lock", "1413632998:2");
INSERT INTO `d1_postmeta` VALUES("3622", "2368", "_wp_attached_file", "2014/10/350x802.png");
INSERT INTO `d1_postmeta` VALUES("2187", "2112", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("2188", "2112", "_menu_item_menu_item_parent", "2175");
INSERT INTO `d1_postmeta` VALUES("2189", "2112", "_menu_item_object_id", "258");
INSERT INTO `d1_postmeta` VALUES("2190", "2112", "_menu_item_object", "g1_work");
INSERT INTO `d1_postmeta` VALUES("2191", "2112", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("2192", "2112", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2193", "2112", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("2194", "2112", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("2195", "2113", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("2196", "2113", "_menu_item_menu_item_parent", "2175");
INSERT INTO `d1_postmeta` VALUES("2197", "2113", "_menu_item_object_id", "251");
INSERT INTO `d1_postmeta` VALUES("2198", "2113", "_menu_item_object", "g1_work");
INSERT INTO `d1_postmeta` VALUES("2199", "2113", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("2200", "2113", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2201", "2113", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("2202", "2113", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("2203", "2114", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("2204", "2114", "_menu_item_menu_item_parent", "2175");
INSERT INTO `d1_postmeta` VALUES("2205", "2114", "_menu_item_object_id", "255");
INSERT INTO `d1_postmeta` VALUES("2206", "2114", "_menu_item_object", "g1_work");
INSERT INTO `d1_postmeta` VALUES("2207", "2114", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("2208", "2114", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2209", "2114", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("2210", "2114", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("2211", "2115", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("2212", "2115", "_menu_item_menu_item_parent", "2176");
INSERT INTO `d1_postmeta` VALUES("2213", "2115", "_menu_item_object_id", "249");
INSERT INTO `d1_postmeta` VALUES("2214", "2115", "_menu_item_object", "g1_work");
INSERT INTO `d1_postmeta` VALUES("2215", "2115", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("2216", "2115", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2217", "2115", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("2218", "2115", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("2219", "2116", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("2220", "2116", "_menu_item_menu_item_parent", "2176");
INSERT INTO `d1_postmeta` VALUES("2221", "2116", "_menu_item_object_id", "248");
INSERT INTO `d1_postmeta` VALUES("2222", "2116", "_menu_item_object", "g1_work");
INSERT INTO `d1_postmeta` VALUES("2223", "2116", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("2224", "2116", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2225", "2116", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("2226", "2116", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("2235", "124", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2236", "124", "_wp_page_template", "g1_template_page_full_sections.php");
INSERT INTO `d1_postmeta` VALUES("2237", "124", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2238", "124", "_g1", "a:5:{s:24:\"single_element_media_box\";s:0:\"\";s:21:\"single_element_slider\";s:20:\"revslider_big-slider\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:4:\"none\";s:20:\"single_element_title\";s:4:\"none\";}");
INSERT INTO `d1_postmeta` VALUES("2247", "2117", "_menu_item_type", "taxonomy");
INSERT INTO `d1_postmeta` VALUES("2248", "2117", "_menu_item_menu_item_parent", "2180");
INSERT INTO `d1_postmeta` VALUES("2249", "2117", "_menu_item_object_id", "2");
INSERT INTO `d1_postmeta` VALUES("2250", "2117", "_menu_item_object", "category");
INSERT INTO `d1_postmeta` VALUES("2251", "2117", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("2252", "2117", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2253", "2117", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("2254", "2117", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("2255", "2118", "_menu_item_type", "taxonomy");
INSERT INTO `d1_postmeta` VALUES("2256", "2118", "_menu_item_menu_item_parent", "2180");
INSERT INTO `d1_postmeta` VALUES("2257", "2118", "_menu_item_object_id", "11");
INSERT INTO `d1_postmeta` VALUES("2258", "2118", "_menu_item_object", "category");
INSERT INTO `d1_postmeta` VALUES("2259", "2118", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("2260", "2118", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2261", "2118", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("2262", "2118", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("2263", "2119", "_menu_item_type", "taxonomy");
INSERT INTO `d1_postmeta` VALUES("2264", "2119", "_menu_item_menu_item_parent", "2180");
INSERT INTO `d1_postmeta` VALUES("2265", "2119", "_menu_item_object_id", "3");
INSERT INTO `d1_postmeta` VALUES("2266", "2119", "_menu_item_object", "category");
INSERT INTO `d1_postmeta` VALUES("2267", "2119", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("2268", "2119", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2269", "2119", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("2270", "2119", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("2271", "2120", "_menu_item_type", "taxonomy");
INSERT INTO `d1_postmeta` VALUES("2272", "2120", "_menu_item_menu_item_parent", "2180");
INSERT INTO `d1_postmeta` VALUES("2273", "2120", "_menu_item_object_id", "8");
INSERT INTO `d1_postmeta` VALUES("2274", "2120", "_menu_item_object", "category");
INSERT INTO `d1_postmeta` VALUES("2275", "2120", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("2276", "2120", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2277", "2120", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("2278", "2120", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("2279", "2121", "_menu_item_type", "taxonomy");
INSERT INTO `d1_postmeta` VALUES("2280", "2121", "_menu_item_menu_item_parent", "2180");
INSERT INTO `d1_postmeta` VALUES("2281", "2121", "_menu_item_object_id", "13");
INSERT INTO `d1_postmeta` VALUES("2282", "2121", "_menu_item_object", "post_tag");
INSERT INTO `d1_postmeta` VALUES("2283", "2121", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("2284", "2121", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2285", "2121", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("2286", "2121", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("2287", "2122", "_menu_item_type", "taxonomy");
INSERT INTO `d1_postmeta` VALUES("2288", "2122", "_menu_item_menu_item_parent", "2180");
INSERT INTO `d1_postmeta` VALUES("2289", "2122", "_menu_item_object_id", "16");
INSERT INTO `d1_postmeta` VALUES("2290", "2122", "_menu_item_object", "post_tag");
INSERT INTO `d1_postmeta` VALUES("2291", "2122", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("2292", "2122", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2293", "2122", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("2294", "2122", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("2295", "2123", "_menu_item_type", "taxonomy");
INSERT INTO `d1_postmeta` VALUES("2296", "2123", "_menu_item_menu_item_parent", "2180");
INSERT INTO `d1_postmeta` VALUES("2297", "2123", "_menu_item_object_id", "15");
INSERT INTO `d1_postmeta` VALUES("2298", "2123", "_menu_item_object", "post_tag");
INSERT INTO `d1_postmeta` VALUES("2299", "2123", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("2300", "2123", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2301", "2123", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("2302", "2123", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("2303", "2124", "_menu_item_type", "taxonomy");
INSERT INTO `d1_postmeta` VALUES("2304", "2124", "_menu_item_menu_item_parent", "2180");
INSERT INTO `d1_postmeta` VALUES("2305", "2124", "_menu_item_object_id", "6");
INSERT INTO `d1_postmeta` VALUES("2306", "2124", "_menu_item_object", "category");
INSERT INTO `d1_postmeta` VALUES("2307", "2124", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("2308", "2124", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2309", "2124", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("2310", "2124", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("2311", "2125", "_menu_item_type", "taxonomy");
INSERT INTO `d1_postmeta` VALUES("2312", "2125", "_menu_item_menu_item_parent", "2133");
INSERT INTO `d1_postmeta` VALUES("2313", "2125", "_menu_item_object_id", "23");
INSERT INTO `d1_postmeta` VALUES("2314", "2125", "_menu_item_object", "g1_work_category");
INSERT INTO `d1_postmeta` VALUES("2315", "2125", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("2316", "2125", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2317", "2125", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("2318", "2125", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("2319", "2126", "_menu_item_type", "taxonomy");
INSERT INTO `d1_postmeta` VALUES("2320", "2126", "_menu_item_menu_item_parent", "2133");
INSERT INTO `d1_postmeta` VALUES("2321", "2126", "_menu_item_object_id", "40");
INSERT INTO `d1_postmeta` VALUES("2322", "2126", "_menu_item_object", "g1_work_category");
INSERT INTO `d1_postmeta` VALUES("2323", "2126", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("2324", "2126", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2325", "2126", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("2326", "2126", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("2327", "2127", "_menu_item_type", "taxonomy");
INSERT INTO `d1_postmeta` VALUES("2328", "2127", "_menu_item_menu_item_parent", "2133");
INSERT INTO `d1_postmeta` VALUES("2329", "2127", "_menu_item_object_id", "21");
INSERT INTO `d1_postmeta` VALUES("2330", "2127", "_menu_item_object", "g1_work_category");
INSERT INTO `d1_postmeta` VALUES("2331", "2127", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("2332", "2127", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2333", "2127", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("2334", "2127", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("2335", "2128", "_menu_item_type", "taxonomy");
INSERT INTO `d1_postmeta` VALUES("2336", "2128", "_menu_item_menu_item_parent", "2133");
INSERT INTO `d1_postmeta` VALUES("2337", "2128", "_menu_item_object_id", "38");
INSERT INTO `d1_postmeta` VALUES("2338", "2128", "_menu_item_object", "g1_work_category");
INSERT INTO `d1_postmeta` VALUES("2339", "2128", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("2340", "2128", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2341", "2128", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("2342", "2128", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("2343", "2129", "_menu_item_type", "taxonomy");
INSERT INTO `d1_postmeta` VALUES("2344", "2129", "_menu_item_menu_item_parent", "2133");
INSERT INTO `d1_postmeta` VALUES("2345", "2129", "_menu_item_object_id", "24");
INSERT INTO `d1_postmeta` VALUES("2346", "2129", "_menu_item_object", "g1_work_tag");
INSERT INTO `d1_postmeta` VALUES("2347", "2129", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("2348", "2129", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2349", "2129", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("2350", "2129", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("2351", "2130", "_menu_item_type", "taxonomy");
INSERT INTO `d1_postmeta` VALUES("2352", "2130", "_menu_item_menu_item_parent", "2133");
INSERT INTO `d1_postmeta` VALUES("2353", "2130", "_menu_item_object_id", "22");
INSERT INTO `d1_postmeta` VALUES("2354", "2130", "_menu_item_object", "g1_work_tag");
INSERT INTO `d1_postmeta` VALUES("2355", "2130", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("2356", "2130", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2357", "2130", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("2358", "2130", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("2359", "2131", "_menu_item_type", "taxonomy");
INSERT INTO `d1_postmeta` VALUES("2360", "2131", "_menu_item_menu_item_parent", "2133");
INSERT INTO `d1_postmeta` VALUES("2361", "2131", "_menu_item_object_id", "37");
INSERT INTO `d1_postmeta` VALUES("2362", "2131", "_menu_item_object", "g1_work_tag");
INSERT INTO `d1_postmeta` VALUES("2363", "2131", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("2364", "2131", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2365", "2131", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("2366", "2131", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("2692", "67", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2693", "67", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2694", "67", "_g1", "a:11:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2695", "67", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2696", "67", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2697", "74", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2698", "74", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2699", "74", "_g1", "a:11:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2700", "74", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2701", "74", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2702", "89", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2703", "89", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2704", "89", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2705", "89", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2706", "89", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2708", "90", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2709", "90", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2710", "90", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2711", "90", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2712", "90", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2714", "90", "_wp_old_slug", "90");
INSERT INTO `d1_postmeta` VALUES("2715", "91", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2716", "91", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2717", "91", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2718", "91", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2719", "91", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2721", "91", "_wp_old_slug", "91");
INSERT INTO `d1_postmeta` VALUES("2722", "94", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2723", "94", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2724", "94", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2725", "94", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2726", "94", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2728", "95", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2729", "95", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2730", "95", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2731", "95", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2732", "95", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2734", "95", "_wp_old_slug", "95");
INSERT INTO `d1_postmeta` VALUES("2735", "96", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2736", "96", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2737", "96", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2738", "96", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2739", "96", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2741", "96", "_wp_old_slug", "96");
INSERT INTO `d1_postmeta` VALUES("2742", "97", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2743", "97", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2744", "97", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2745", "97", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2746", "97", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2748", "97", "_wp_old_slug", "97");
INSERT INTO `d1_postmeta` VALUES("2749", "98", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2750", "98", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2751", "98", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2752", "98", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2753", "98", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2755", "98", "_wp_old_slug", "98");
INSERT INTO `d1_postmeta` VALUES("2756", "100", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2757", "100", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2758", "100", "_g1", "a:11:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2759", "100", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2760", "100", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2761", "105", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2762", "105", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2763", "105", "_g1", "a:11:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2764", "105", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2765", "105", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2766", "105", "_oembed_33d3d24e5446df66b0a127d8399b2e6e", "{{unknown}}");
INSERT INTO `d1_postmeta` VALUES("2767", "105", "_oembed_302080e9ff5fd164b236feb44ecfa8ff", "{{unknown}}");
INSERT INTO `d1_postmeta` VALUES("2768", "106", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2769", "106", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2770", "106", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2771", "106", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2772", "106", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2773", "439", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2774", "439", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2775", "439", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2776", "439", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2777", "439", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2778", "439", "_wp_old_slug", "439");
INSERT INTO `d1_postmeta` VALUES("2779", "439", "_wp_old_slug", "post-post-format-aside");
INSERT INTO `d1_postmeta` VALUES("2780", "587", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2781", "587", "_g1_subtitle", "A Post Template Example");
INSERT INTO `d1_postmeta` VALUES("2782", "587", "_g1", "a:12:{s:8:\"template\";s:12:\"sidebar_left\";s:21:\"single_element_slider\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2783", "587", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2784", "587", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2786", "587", "_wp_old_slug", "left-sidebar");
INSERT INTO `d1_postmeta` VALUES("2787", "588", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2788", "588", "_g1_subtitle", "A Post Template Example");
INSERT INTO `d1_postmeta` VALUES("2789", "588", "_g1", "a:12:{s:8:\"template\";s:13:\"sidebar_right\";s:21:\"single_element_slider\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2790", "588", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2791", "588", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2793", "588", "_wp_old_slug", "postright-sidebar");
INSERT INTO `d1_postmeta` VALUES("2794", "589", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2795", "589", "_g1_subtitle", "A Post Template Example");
INSERT INTO `d1_postmeta` VALUES("2796", "589", "_g1", "a:12:{s:8:\"template\";s:4:\"full\";s:21:\"single_element_slider\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2797", "589", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2798", "589", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2800", "589", "_wp_old_slug", "postfull-width");
INSERT INTO `d1_postmeta` VALUES("2801", "1153", "original_post_id", "418");
INSERT INTO `d1_postmeta` VALUES("2802", "1153", "_wp_old_slug", "418");
INSERT INTO `d1_postmeta` VALUES("2803", "1164", "standard_seo_post_level_layout", "");
INSERT INTO `d1_postmeta` VALUES("2804", "1164", "standard_link_url_field", "");
INSERT INTO `d1_postmeta` VALUES("2805", "1164", "standard_seo_post_meta_description", "");
INSERT INTO `d1_postmeta` VALUES("2806", "1164", "original_post_id", "922");
INSERT INTO `d1_postmeta` VALUES("2807", "1164", "_wp_old_slug", "922");
INSERT INTO `d1_postmeta` VALUES("2808", "1241", "_publicize_pending", "1");
INSERT INTO `d1_postmeta` VALUES("2809", "1241", "standard_seo_post_level_layout", "");
INSERT INTO `d1_postmeta` VALUES("2810", "1241", "standard_link_url_field", "");
INSERT INTO `d1_postmeta` VALUES("2811", "1241", "standard_seo_post_meta_description", "");
INSERT INTO `d1_postmeta` VALUES("2812", "1241", "original_post_id", "1241");
INSERT INTO `d1_postmeta` VALUES("2813", "1241", "_wp_old_slug", "1241");
INSERT INTO `d1_postmeta` VALUES("2814", "1241", "_wp_old_slug", "sticky");
INSERT INTO `d1_postmeta` VALUES("2816", "1241", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2817", "1241", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2818", "1241", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2819", "1241", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2820", "1241", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2821", "17", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2822", "17", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2823", "17", "_g1", "a:12:{s:8:\"template\";s:4:\"full\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2824", "17", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2825", "17", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2827", "17", "_wp_old_slug", "albert-einstein");
INSERT INTO `d1_postmeta` VALUES("2828", "101", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2829", "101", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2830", "101", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2831", "101", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2832", "101", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2833", "101", "_wp_old_slug", "amadeus-classic-elegant-wp-theme");
INSERT INTO `d1_postmeta` VALUES("2834", "101", "_wp_old_slug", "post-post-format-link");
INSERT INTO `d1_postmeta` VALUES("2835", "101", "_oembed_9b1cfee085d9969c8f6ad158f7409430", "{{unknown}}");
INSERT INTO `d1_postmeta` VALUES("2836", "441", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2837", "441", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2838", "441", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2839", "441", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2840", "441", "_format_audio_embed", "/wp-content/uploads/2013/04/g1_loop.mp3");
INSERT INTO `d1_postmeta` VALUES("2841", "441", "_wp_old_slug", "audio-post-format");
INSERT INTO `d1_postmeta` VALUES("2842", "441", "_wp_old_slug", "post-post-format-audio");
INSERT INTO `d1_postmeta` VALUES("2843", "442", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2844", "442", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2845", "442", "_g1", "a:12:{s:8:\"template\";s:4:\"full\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2846", "442", "_format_video_embed", "http://www.youtube.com/watch?v=YE7VzlLtp-4");
INSERT INTO `d1_postmeta` VALUES("2847", "442", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2848", "442", "_wp_old_slug", "video-post-format");
INSERT INTO `d1_postmeta` VALUES("2849", "442", "_wp_old_slug", "post-post-format-video");
INSERT INTO `d1_postmeta` VALUES("2850", "442", "_oembed_d7d431484a0404ca62f73df70c94b28f", "<iframe width=\"968\" height=\"545\" src=\"http://www.youtube.com/embed/YE7VzlLtp-4?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>");
INSERT INTO `d1_postmeta` VALUES("2851", "442", "_oembed_10e665f3308d1ec238ffb710ae902736", "<iframe width=\"636\" height=\"358\" src=\"http://www.youtube.com/embed/YE7VzlLtp-4?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>");
INSERT INTO `d1_postmeta` VALUES("2852", "442", "_oembed_b67a7ac4486656ce760ce38f87bc05c9", "<iframe width=\"239\" height=\"134\" src=\"http://www.youtube.com/embed/YE7VzlLtp-4?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>");
INSERT INTO `d1_postmeta` VALUES("2853", "442", "_oembed_84184e184963c75cb68982be4902aeb9", "<iframe width=\"320\" height=\"180\" src=\"http://www.youtube.com/embed/YE7VzlLtp-4?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>");
INSERT INTO `d1_postmeta` VALUES("2854", "442", "_oembed_3627fcba1ea7453049dc268bec5a8414", "<iframe width=\"482\" height=\"271\" src=\"http://www.youtube.com/embed/YE7VzlLtp-4?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>");
INSERT INTO `d1_postmeta` VALUES("2855", "443", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2856", "443", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2857", "443", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2858", "443", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2859", "443", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2861", "443", "_wp_old_slug", "image-post-format");
INSERT INTO `d1_postmeta` VALUES("2862", "443", "_wp_old_slug", "post-post-format-image");
INSERT INTO `d1_postmeta` VALUES("2863", "444", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2864", "444", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2865", "444", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:13:\"simple_slider\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2866", "444", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2867", "444", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2868", "444", "_wp_old_slug", "gallerz-post-format");
INSERT INTO `d1_postmeta` VALUES("2869", "444", "_wp_old_slug", "post-post-format-gallery");
INSERT INTO `d1_postmeta` VALUES("2870", "450", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2871", "450", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2872", "450", "_g1", "a:12:{s:8:\"template\";s:13:\"sidebar_right\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2873", "450", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2874", "450", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2876", "450", "_wp_old_slug", "standard-post-format");
INSERT INTO `d1_postmeta` VALUES("2877", "450", "_wp_old_slug", "post-post-format-standard");
INSERT INTO `d1_postmeta` VALUES("2936", "1867", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2937", "1867", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2938", "1867", "_g1", "a:12:{s:8:\"template\";s:13:\"overview_left\";s:21:\"single_element_slider\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2939", "1867", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2940", "1867", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2942", "1867", "_wp_old_slug", "postcontent-on-left");
INSERT INTO `d1_postmeta` VALUES("2943", "1868", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2944", "1868", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2945", "1868", "_g1", "a:12:{s:8:\"template\";s:14:\"overview_right\";s:21:\"single_element_slider\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:4:\"list\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2946", "1868", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2947", "1868", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2949", "1868", "_wp_old_slug", "post-overview-on-right");
INSERT INTO `d1_postmeta` VALUES("2950", "2013", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("2951", "2013", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("2952", "2013", "_g1", "a:12:{s:8:\"template\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";s:24:\"single_element_media_box\";s:0:\"\";s:19:\"single_element_date\";s:0:\"\";s:21:\"single_element_author\";s:0:\"\";s:28:\"single_element_comments_link\";s:0:\"\";s:25:\"single_element_categories\";s:0:\"\";s:19:\"single_element_tags\";s:0:\"\";s:30:\"single_element_related_entries\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("2953", "2013", "_format_video_embed", "");
INSERT INTO `d1_postmeta` VALUES("2954", "2013", "_format_audio_embed", "");
INSERT INTO `d1_postmeta` VALUES("2955", "2013", "_wp_old_slug", "quote-post-format");
INSERT INTO `d1_postmeta` VALUES("3465", "124", "_g1_gmaps_metabox", "a:2:{s:17:\"precontent_map_id\";s:4:\"none\";s:16:\"prefooter_map_id\";s:4:\"none\";}");
INSERT INTO `d1_postmeta` VALUES("3464", "124", "slide_template", "default");
INSERT INTO `d1_postmeta` VALUES("3463", "124", "g1_page_builder_state", "active");
INSERT INTO `d1_postmeta` VALUES("3137", "2148", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("3138", "2148", "_menu_item_menu_item_parent", "2147");
INSERT INTO `d1_postmeta` VALUES("3139", "2148", "_menu_item_object_id", "439");
INSERT INTO `d1_postmeta` VALUES("3140", "2148", "_menu_item_object", "post");
INSERT INTO `d1_postmeta` VALUES("3141", "2148", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("3142", "2148", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("3143", "2148", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("3144", "2148", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("3145", "2149", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("3146", "2149", "_menu_item_menu_item_parent", "2147");
INSERT INTO `d1_postmeta` VALUES("3147", "2149", "_menu_item_object_id", "444");
INSERT INTO `d1_postmeta` VALUES("3148", "2149", "_menu_item_object", "post");
INSERT INTO `d1_postmeta` VALUES("3149", "2149", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("3150", "2149", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("3151", "2149", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("3152", "2149", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("3153", "2150", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("3154", "2150", "_menu_item_menu_item_parent", "2147");
INSERT INTO `d1_postmeta` VALUES("3155", "2150", "_menu_item_object_id", "443");
INSERT INTO `d1_postmeta` VALUES("3156", "2150", "_menu_item_object", "post");
INSERT INTO `d1_postmeta` VALUES("3157", "2150", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("3158", "2150", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("3159", "2150", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("3160", "2150", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("3161", "2151", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("3162", "2151", "_menu_item_menu_item_parent", "2147");
INSERT INTO `d1_postmeta` VALUES("3163", "2151", "_menu_item_object_id", "442");
INSERT INTO `d1_postmeta` VALUES("3164", "2151", "_menu_item_object", "post");
INSERT INTO `d1_postmeta` VALUES("3165", "2151", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("3166", "2151", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("3167", "2151", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("3168", "2151", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("3169", "2152", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("3170", "2152", "_menu_item_menu_item_parent", "2147");
INSERT INTO `d1_postmeta` VALUES("3171", "2152", "_menu_item_object_id", "441");
INSERT INTO `d1_postmeta` VALUES("3172", "2152", "_menu_item_object", "post");
INSERT INTO `d1_postmeta` VALUES("3173", "2152", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("3174", "2152", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("3175", "2152", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("3176", "2152", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("3177", "2153", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("3178", "2153", "_menu_item_menu_item_parent", "2147");
INSERT INTO `d1_postmeta` VALUES("3179", "2153", "_menu_item_object_id", "101");
INSERT INTO `d1_postmeta` VALUES("3180", "2153", "_menu_item_object", "post");
INSERT INTO `d1_postmeta` VALUES("3181", "2153", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("3182", "2153", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("3183", "2153", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("3184", "2153", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("3185", "2154", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("3186", "2154", "_menu_item_menu_item_parent", "2147");
INSERT INTO `d1_postmeta` VALUES("3187", "2154", "_menu_item_object_id", "450");
INSERT INTO `d1_postmeta` VALUES("3188", "2154", "_menu_item_object", "post");
INSERT INTO `d1_postmeta` VALUES("3189", "2154", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("3190", "2154", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("3191", "2154", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("3192", "2154", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("3209", "2157", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("3210", "2157", "_menu_item_menu_item_parent", "2182");
INSERT INTO `d1_postmeta` VALUES("3211", "2157", "_menu_item_object_id", "589");
INSERT INTO `d1_postmeta` VALUES("3212", "2157", "_menu_item_object", "post");
INSERT INTO `d1_postmeta` VALUES("3213", "2157", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("3214", "2157", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("3215", "2157", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("3216", "2157", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("3217", "2158", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("3218", "2158", "_menu_item_menu_item_parent", "2182");
INSERT INTO `d1_postmeta` VALUES("3219", "2158", "_menu_item_object_id", "588");
INSERT INTO `d1_postmeta` VALUES("3220", "2158", "_menu_item_object", "post");
INSERT INTO `d1_postmeta` VALUES("3221", "2158", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("3222", "2158", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("3223", "2158", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("3224", "2158", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("3225", "2159", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("3226", "2159", "_menu_item_menu_item_parent", "2182");
INSERT INTO `d1_postmeta` VALUES("3227", "2159", "_menu_item_object_id", "587");
INSERT INTO `d1_postmeta` VALUES("3228", "2159", "_menu_item_object", "post");
INSERT INTO `d1_postmeta` VALUES("3229", "2159", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("3230", "2159", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("3231", "2159", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("3232", "2159", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("3452", "124", "_edit_lock", "1413632234:2");
INSERT INTO `d1_postmeta` VALUES("3377", "2178", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("3378", "2178", "_menu_item_menu_item_parent", "2182");
INSERT INTO `d1_postmeta` VALUES("3379", "2178", "_menu_item_object_id", "1868");
INSERT INTO `d1_postmeta` VALUES("3380", "2178", "_menu_item_object", "post");
INSERT INTO `d1_postmeta` VALUES("3381", "2178", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("3382", "2178", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("3383", "2178", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("3384", "2178", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("3385", "2179", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("3386", "2179", "_menu_item_menu_item_parent", "2182");
INSERT INTO `d1_postmeta` VALUES("3387", "2179", "_menu_item_object_id", "1867");
INSERT INTO `d1_postmeta` VALUES("3388", "2179", "_menu_item_object", "post");
INSERT INTO `d1_postmeta` VALUES("3389", "2179", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("3390", "2179", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("3391", "2179", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("3392", "2179", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("3546", "2322", "_menu_item_object", "custom");
INSERT INTO `d1_postmeta` VALUES("3545", "2322", "_menu_item_object_id", "2322");
INSERT INTO `d1_postmeta` VALUES("3544", "2322", "_menu_item_menu_item_parent", "0");
INSERT INTO `d1_postmeta` VALUES("3543", "2322", "_menu_item_type", "custom");
INSERT INTO `d1_postmeta` VALUES("3434", "2185", "_menu_item_type", "custom");
INSERT INTO `d1_postmeta` VALUES("3435", "2185", "_menu_item_menu_item_parent", "0");
INSERT INTO `d1_postmeta` VALUES("3436", "2185", "_menu_item_object_id", "2185");
INSERT INTO `d1_postmeta` VALUES("3437", "2185", "_menu_item_object", "custom");
INSERT INTO `d1_postmeta` VALUES("3438", "2185", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("3439", "2185", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("3440", "2185", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("3441", "2185", "_menu_item_url", "#");
INSERT INTO `d1_postmeta` VALUES("3443", "2186", "_menu_item_type", "custom");
INSERT INTO `d1_postmeta` VALUES("3444", "2186", "_menu_item_menu_item_parent", "0");
INSERT INTO `d1_postmeta` VALUES("3445", "2186", "_menu_item_object_id", "2186");
INSERT INTO `d1_postmeta` VALUES("3446", "2186", "_menu_item_object", "custom");
INSERT INTO `d1_postmeta` VALUES("3447", "2186", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("3448", "2186", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("3449", "2186", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("3450", "2186", "_menu_item_url", "#");
INSERT INTO `d1_postmeta` VALUES("3492", "2228", "_wp_attached_file", "2014/10/350x80.png");
INSERT INTO `d1_postmeta` VALUES("3493", "2228", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:350;s:6:\"height\";i:80;s:4:\"file\";s:18:\"2014/10/350x80.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"350x80-150x80.png\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"350x80-300x68.png\";s:5:\"width\";i:300;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:17:\"350x80-320x80.png\";s:5:\"width\";i:320;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"g1_one_third_flexible\";a:4:{s:4:\"file\";s:17:\"350x80-320x73.png\";s:5:\"width\";i:320;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:17:\"350x80-239x80.png\";s:5:\"width\";i:239;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"g1_one_fourth_flexible\";a:4:{s:4:\"file\";s:17:\"350x80-239x54.png\";s:5:\"width\";i:239;s:6:\"height\";i:54;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:16:\"350x80-55x55.png\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3494", "2236", "_wp_attached_file", "2014/10/Babiwala.png");
INSERT INTO `d1_postmeta` VALUES("3495", "2236", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:20:\"2014/10/Babiwala.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Babiwala-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:20:\"Babiwala-225x180.png\";s:5:\"width\";i:225;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:20:\"Babiwala-225x134.png\";s:5:\"width\";i:225;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:18:\"Babiwala-55x55.png\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3496", "2237", "_wp_attached_file", "2014/10/industrial-catering.png");
INSERT INTO `d1_postmeta` VALUES("3497", "2237", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:31:\"2014/10/industrial-catering.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"industrial-catering-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:31:\"industrial-catering-225x180.png\";s:5:\"width\";i:225;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:31:\"industrial-catering-225x134.png\";s:5:\"width\";i:225;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:29:\"industrial-catering-55x55.png\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3498", "2236", "_edit_lock", "1413461566:2");
INSERT INTO `d1_postmeta` VALUES("3499", "2238", "_wp_attached_file", "2014/10/Vivaha.png");
INSERT INTO `d1_postmeta` VALUES("3500", "2238", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:18:\"2014/10/Vivaha.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Vivaha-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:18:\"Vivaha-225x180.png\";s:5:\"width\";i:225;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:18:\"Vivaha-225x134.png\";s:5:\"width\";i:225;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:16:\"Vivaha-55x55.png\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3501", "2237", "_edit_lock", "1413460071:2");
INSERT INTO `d1_postmeta` VALUES("3502", "2238", "_edit_lock", "1413460352:2");
INSERT INTO `d1_postmeta` VALUES("3503", "2251", "_wp_attached_file", "2014/10/Home-slide1.jpg");
INSERT INTO `d1_postmeta` VALUES("3504", "2251", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:620;s:4:\"file\";s:23:\"2014/10/Home-slide1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Home-slide1-150x150.jpg\";s:5:\"width\";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:\"Home-slide1-300x96.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Home-slide1-1024x330.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"g1_max\";a:4:{s:4:\"file\";s:23:\"Home-slide1-968x312.jpg\";s:5:\"width\";i:968;s:6:\"height\";i:312;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_two_third\";a:4:{s:4:\"file\";s:23:\"Home-slide1-636x205.jpg\";s:5:\"width\";i:636;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"g1_one_half\";a:4:{s:4:\"file\";s:23:\"Home-slide1-482x271.jpg\";s:5:\"width\";i:482;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:23:\"Home-slide1-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"g1_one_third_flexible\";a:4:{s:4:\"file\";s:23:\"Home-slide1-320x103.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:23:\"Home-slide1-239x134.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"g1_one_fourth_flexible\";a:4:{s:4:\"file\";s:22:\"Home-slide1-239x77.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:77;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:21:\"Home-slide1-55x55.jpg\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3505", "2252", "_wp_attached_file", "2014/10/Home-slide2.jpg");
INSERT INTO `d1_postmeta` VALUES("3506", "2252", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:620;s:4:\"file\";s:23:\"2014/10/Home-slide2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Home-slide2-150x150.jpg\";s:5:\"width\";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:\"Home-slide2-300x96.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Home-slide2-1024x330.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"g1_max\";a:4:{s:4:\"file\";s:23:\"Home-slide2-968x312.jpg\";s:5:\"width\";i:968;s:6:\"height\";i:312;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_two_third\";a:4:{s:4:\"file\";s:23:\"Home-slide2-636x205.jpg\";s:5:\"width\";i:636;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"g1_one_half\";a:4:{s:4:\"file\";s:23:\"Home-slide2-482x271.jpg\";s:5:\"width\";i:482;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:23:\"Home-slide2-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"g1_one_third_flexible\";a:4:{s:4:\"file\";s:23:\"Home-slide2-320x103.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:23:\"Home-slide2-239x134.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"g1_one_fourth_flexible\";a:4:{s:4:\"file\";s:22:\"Home-slide2-239x77.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:77;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:21:\"Home-slide2-55x55.jpg\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3507", "2253", "_wp_attached_file", "2014/10/Home-slide3.jpg");
INSERT INTO `d1_postmeta` VALUES("3508", "2253", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:620;s:4:\"file\";s:23:\"2014/10/Home-slide3.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Home-slide3-150x150.jpg\";s:5:\"width\";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:\"Home-slide3-300x96.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Home-slide3-1024x330.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"g1_max\";a:4:{s:4:\"file\";s:23:\"Home-slide3-968x312.jpg\";s:5:\"width\";i:968;s:6:\"height\";i:312;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_two_third\";a:4:{s:4:\"file\";s:23:\"Home-slide3-636x205.jpg\";s:5:\"width\";i:636;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"g1_one_half\";a:4:{s:4:\"file\";s:23:\"Home-slide3-482x271.jpg\";s:5:\"width\";i:482;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:23:\"Home-slide3-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"g1_one_third_flexible\";a:4:{s:4:\"file\";s:23:\"Home-slide3-320x103.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:23:\"Home-slide3-239x134.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"g1_one_fourth_flexible\";a:4:{s:4:\"file\";s:22:\"Home-slide3-239x77.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:77;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:21:\"Home-slide3-55x55.jpg\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3509", "2254", "_wp_attached_file", "2014/10/350x801.png");
INSERT INTO `d1_postmeta` VALUES("3510", "2254", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:350;s:6:\"height\";i:80;s:4:\"file\";s:19:\"2014/10/350x801.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"350x801-150x80.png\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"350x801-300x68.png\";s:5:\"width\";i:300;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:18:\"350x801-320x80.png\";s:5:\"width\";i:320;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"g1_one_third_flexible\";a:4:{s:4:\"file\";s:18:\"350x801-320x73.png\";s:5:\"width\";i:320;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:18:\"350x801-239x80.png\";s:5:\"width\";i:239;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"g1_one_fourth_flexible\";a:4:{s:4:\"file\";s:18:\"350x801-239x54.png\";s:5:\"width\";i:239;s:6:\"height\";i:54;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:17:\"350x801-55x55.png\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3511", "2268", "_wp_attached_file", "2013/03/middle-img.jpg");
INSERT INTO `d1_postmeta` VALUES("3512", "2268", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1260;s:6:\"height\";i:468;s:4:\"file\";s:22:\"2013/03/middle-img.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"middle-img-150x150.jpg\";s:5:\"width\";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:\"middle-img-300x111.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:111;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"middle-img-1024x380.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"g1_max\";a:4:{s:4:\"file\";s:22:\"middle-img-968x359.jpg\";s:5:\"width\";i:968;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_two_third\";a:4:{s:4:\"file\";s:22:\"middle-img-636x236.jpg\";s:5:\"width\";i:636;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"g1_one_half\";a:4:{s:4:\"file\";s:22:\"middle-img-482x271.jpg\";s:5:\"width\";i:482;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:22:\"middle-img-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"g1_one_third_flexible\";a:4:{s:4:\"file\";s:22:\"middle-img-320x118.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:22:\"middle-img-239x134.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"g1_one_fourth_flexible\";a:4:{s:4:\"file\";s:21:\"middle-img-239x88.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:88;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:20:\"middle-img-55x55.jpg\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3513", "2285", "_wp_attached_file", "2014/10/Home-slide4.jpg");
INSERT INTO `d1_postmeta` VALUES("3514", "2285", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:620;s:4:\"file\";s:23:\"2014/10/Home-slide4.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Home-slide4-150x150.jpg\";s:5:\"width\";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:\"Home-slide4-300x96.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Home-slide4-1024x330.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"g1_max\";a:4:{s:4:\"file\";s:23:\"Home-slide4-968x312.jpg\";s:5:\"width\";i:968;s:6:\"height\";i:312;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_two_third\";a:4:{s:4:\"file\";s:23:\"Home-slide4-636x205.jpg\";s:5:\"width\";i:636;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"g1_one_half\";a:4:{s:4:\"file\";s:23:\"Home-slide4-482x271.jpg\";s:5:\"width\";i:482;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:23:\"Home-slide4-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"g1_one_third_flexible\";a:4:{s:4:\"file\";s:23:\"Home-slide4-320x103.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:23:\"Home-slide4-239x134.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"g1_one_fourth_flexible\";a:4:{s:4:\"file\";s:22:\"Home-slide4-239x77.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:77;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:21:\"Home-slide4-55x55.jpg\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3515", "2287", "_wp_attached_file", "2014/10/aboutus.jpg");
INSERT INTO `d1_postmeta` VALUES("3516", "2287", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:620;s:4:\"file\";s:19:\"2014/10/aboutus.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"aboutus-150x150.jpg\";s:5:\"width\";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:\"aboutus-300x96.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"aboutus-1024x330.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"g1_max\";a:4:{s:4:\"file\";s:19:\"aboutus-968x312.jpg\";s:5:\"width\";i:968;s:6:\"height\";i:312;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_two_third\";a:4:{s:4:\"file\";s:19:\"aboutus-636x205.jpg\";s:5:\"width\";i:636;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"g1_one_half\";a:4:{s:4:\"file\";s:19:\"aboutus-482x271.jpg\";s:5:\"width\";i:482;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:19:\"aboutus-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"g1_one_third_flexible\";a:4:{s:4:\"file\";s:19:\"aboutus-320x103.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:19:\"aboutus-239x134.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"g1_one_fourth_flexible\";a:4:{s:4:\"file\";s:18:\"aboutus-239x77.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:77;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:17:\"aboutus-55x55.jpg\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3517", "2287", "_edit_lock", "1413524461:2");
INSERT INTO `d1_postmeta` VALUES("3518", "2301", "_wp_attached_file", "2014/10/home-section-neb.jpg");
INSERT INTO `d1_postmeta` VALUES("3519", "2301", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1260;s:6:\"height\";i:468;s:4:\"file\";s:28:\"2014/10/home-section-neb.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"home-section-neb-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"home-section-neb-300x111.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:111;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"home-section-neb-1024x380.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"g1_max\";a:4:{s:4:\"file\";s:28:\"home-section-neb-968x359.jpg\";s:5:\"width\";i:968;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_two_third\";a:4:{s:4:\"file\";s:28:\"home-section-neb-636x236.jpg\";s:5:\"width\";i:636;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"g1_one_half\";a:4:{s:4:\"file\";s:28:\"home-section-neb-482x271.jpg\";s:5:\"width\";i:482;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:28:\"home-section-neb-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"g1_one_third_flexible\";a:4:{s:4:\"file\";s:28:\"home-section-neb-320x118.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:28:\"home-section-neb-239x134.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"g1_one_fourth_flexible\";a:4:{s:4:\"file\";s:27:\"home-section-neb-239x88.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:88;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:26:\"home-section-neb-55x55.jpg\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3520", "2301", "_edit_lock", "1413609580:2");
INSERT INTO `d1_postmeta` VALUES("3521", "2307", "_edit_lock", "1414642267:1");
INSERT INTO `d1_postmeta` VALUES("3522", "2307", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("3523", "2307", "_wp_page_template", "g1_template_page_full_sections.php");
INSERT INTO `d1_postmeta` VALUES("3524", "2307", "g1_page_builder_state", "active");
INSERT INTO `d1_postmeta` VALUES("3525", "2307", "slide_template", "default");
INSERT INTO `d1_postmeta` VALUES("3526", "2307", "_g1_gmaps_metabox", "a:2:{s:17:\"precontent_map_id\";s:4:\"none\";s:16:\"prefooter_map_id\";s:4:\"none\";}");
INSERT INTO `d1_postmeta` VALUES("3527", "2307", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("3528", "2307", "_g1", "a:5:{s:24:\"single_element_media_box\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("3529", "2312", "_wp_attached_file", "2014/10/Menu-Neb.jpg");
INSERT INTO `d1_postmeta` VALUES("3530", "2312", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:969;s:6:\"height\";i:2334;s:4:\"file\";s:20:\"2014/10/Menu-Neb.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Menu-Neb-150x150.jpg\";s:5:\"width\";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:\"Menu-Neb-124x300.jpg\";s:5:\"width\";i:124;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"Menu-Neb-425x1024.jpg\";s:5:\"width\";i:425;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"g1_max\";a:4:{s:4:\"file\";s:21:\"Menu-Neb-968x2331.jpg\";s:5:\"width\";i:968;s:6:\"height\";i:2331;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_two_third\";a:4:{s:4:\"file\";s:21:\"Menu-Neb-636x1531.jpg\";s:5:\"width\";i:636;s:6:\"height\";i:1531;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"g1_one_half\";a:4:{s:4:\"file\";s:20:\"Menu-Neb-482x271.jpg\";s:5:\"width\";i:482;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:20:\"Menu-Neb-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"g1_one_third_flexible\";a:4:{s:4:\"file\";s:20:\"Menu-Neb-320x770.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:20:\"Menu-Neb-239x134.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"g1_one_fourth_flexible\";a:4:{s:4:\"file\";s:20:\"Menu-Neb-239x575.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:18:\"Menu-Neb-55x55.jpg\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3531", "2312", "_edit_lock", "1413612823:2");
INSERT INTO `d1_postmeta` VALUES("3532", "2314", "_wp_attached_file", "2014/10/Menu-Neb1.jpg");
INSERT INTO `d1_postmeta` VALUES("3533", "2314", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:969;s:6:\"height\";i:2334;s:4:\"file\";s:21:\"2014/10/Menu-Neb1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Menu-Neb1-150x150.jpg\";s:5:\"width\";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:\"Menu-Neb1-124x300.jpg\";s:5:\"width\";i:124;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Menu-Neb1-425x1024.jpg\";s:5:\"width\";i:425;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"g1_max\";a:4:{s:4:\"file\";s:22:\"Menu-Neb1-968x2331.jpg\";s:5:\"width\";i:968;s:6:\"height\";i:2331;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_two_third\";a:4:{s:4:\"file\";s:22:\"Menu-Neb1-636x1531.jpg\";s:5:\"width\";i:636;s:6:\"height\";i:1531;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"g1_one_half\";a:4:{s:4:\"file\";s:21:\"Menu-Neb1-482x271.jpg\";s:5:\"width\";i:482;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:21:\"Menu-Neb1-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"g1_one_third_flexible\";a:4:{s:4:\"file\";s:21:\"Menu-Neb1-320x770.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:21:\"Menu-Neb1-239x134.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"g1_one_fourth_flexible\";a:4:{s:4:\"file\";s:21:\"Menu-Neb1-239x575.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:19:\"Menu-Neb1-55x55.jpg\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3534", "2314", "_edit_lock", "1413612907:2");
INSERT INTO `d1_postmeta` VALUES("3535", "2317", "_edit_lock", "1413626613:2");
INSERT INTO `d1_postmeta` VALUES("3536", "2317", "_edit_last", "2");
INSERT INTO `d1_postmeta` VALUES("3537", "2317", "_wp_page_template", "default");
INSERT INTO `d1_postmeta` VALUES("3538", "2317", "g1_page_builder_state", "active");
INSERT INTO `d1_postmeta` VALUES("3539", "2317", "slide_template", "default");
INSERT INTO `d1_postmeta` VALUES("3540", "2317", "_g1_gmaps_metabox", "a:2:{s:17:\"precontent_map_id\";s:4:\"none\";s:16:\"prefooter_map_id\";s:4:\"none\";}");
INSERT INTO `d1_postmeta` VALUES("3541", "2317", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("3542", "2317", "_g1", "a:5:{s:24:\"single_element_media_box\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("3549", "2322", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("3550", "2322", "_menu_item_url", "http://hrd.softons.cu.cc/");
INSERT INTO `d1_postmeta` VALUES("3552", "2323", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("3553", "2323", "_menu_item_menu_item_parent", "0");
INSERT INTO `d1_postmeta` VALUES("3554", "2323", "_menu_item_object_id", "2317");
INSERT INTO `d1_postmeta` VALUES("3555", "2323", "_menu_item_object", "page");
INSERT INTO `d1_postmeta` VALUES("3556", "2323", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("3557", "2323", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("3558", "2323", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("3559", "2323", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("3561", "2324", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("3562", "2324", "_menu_item_menu_item_parent", "0");
INSERT INTO `d1_postmeta` VALUES("3563", "2324", "_menu_item_object_id", "2217");
INSERT INTO `d1_postmeta` VALUES("3564", "2324", "_menu_item_object", "page");
INSERT INTO `d1_postmeta` VALUES("3565", "2324", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("3566", "2324", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("3567", "2324", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("3568", "2324", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("3570", "2336", "_wp_attached_file", "2014/10/Mobile-logo.png");
INSERT INTO `d1_postmeta` VALUES("3571", "2336", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:200;s:6:\"height\";i:40;s:4:\"file\";s:23:\"2014/10/Mobile-logo.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Mobile-logo-150x40.png\";s:5:\"width\";i:150;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:21:\"Mobile-logo-55x40.png\";s:5:\"width\";i:55;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3572", "2336", "_edit_lock", "1413624609:1");
INSERT INTO `d1_postmeta` VALUES("3573", "2337", "_wp_attached_file", "2014/10/favicon.png");
INSERT INTO `d1_postmeta` VALUES("3574", "2337", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:16;s:6:\"height\";i:16;s:4:\"file\";s:19:\"2014/10/favicon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3575", "2338", "_wp_attached_file", "2014/10/Service.neb_.jpg");
INSERT INTO `d1_postmeta` VALUES("3576", "2338", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:968;s:6:\"height\";i:312;s:4:\"file\";s:24:\"2014/10/Service.neb_.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Service.neb_-150x150.jpg\";s:5:\"width\";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:\"Service.neb_-300x96.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_two_third\";a:4:{s:4:\"file\";s:24:\"Service.neb_-636x204.jpg\";s:5:\"width\";i:636;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"g1_one_half\";a:4:{s:4:\"file\";s:24:\"Service.neb_-482x271.jpg\";s:5:\"width\";i:482;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:24:\"Service.neb_-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"g1_one_third_flexible\";a:4:{s:4:\"file\";s:24:\"Service.neb_-320x103.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:24:\"Service.neb_-239x134.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"g1_one_fourth_flexible\";a:4:{s:4:\"file\";s:23:\"Service.neb_-239x77.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:77;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:22:\"Service.neb_-55x55.jpg\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3577", "2338", "_edit_lock", "1413625073:2");
INSERT INTO `d1_postmeta` VALUES("3578", "2340", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("3579", "2340", "_menu_item_menu_item_parent", "0");
INSERT INTO `d1_postmeta` VALUES("3580", "2340", "_menu_item_object_id", "2307");
INSERT INTO `d1_postmeta` VALUES("3581", "2340", "_menu_item_object", "page");
INSERT INTO `d1_postmeta` VALUES("3582", "2340", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("3583", "2340", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("3584", "2340", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("3585", "2340", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("3587", "2341", "_wp_attached_file", "2014/10/aboutus1.jpg");
INSERT INTO `d1_postmeta` VALUES("3588", "2341", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:968;s:6:\"height\";i:312;s:4:\"file\";s:20:\"2014/10/aboutus1.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"aboutus1-150x150.jpg\";s:5:\"width\";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:\"aboutus1-300x96.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_two_third\";a:4:{s:4:\"file\";s:20:\"aboutus1-636x204.jpg\";s:5:\"width\";i:636;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"g1_one_half\";a:4:{s:4:\"file\";s:20:\"aboutus1-482x271.jpg\";s:5:\"width\";i:482;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:20:\"aboutus1-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"g1_one_third_flexible\";a:4:{s:4:\"file\";s:20:\"aboutus1-320x103.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:20:\"aboutus1-239x134.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"g1_one_fourth_flexible\";a:4:{s:4:\"file\";s:19:\"aboutus1-239x77.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:77;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:18:\"aboutus1-55x55.jpg\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3589", "2341", "_edit_lock", "1413629720:2");
INSERT INTO `d1_postmeta` VALUES("3590", "2343", "_edit_lock", "1413778534:1");
INSERT INTO `d1_postmeta` VALUES("3591", "2343", "_edit_last", "1");
INSERT INTO `d1_postmeta` VALUES("3592", "2343", "_wp_page_template", "g1_template_page_full_sections.php");
INSERT INTO `d1_postmeta` VALUES("3593", "2343", "g1_page_builder_state", "inactive");
INSERT INTO `d1_postmeta` VALUES("3594", "2343", "slide_template", "default");
INSERT INTO `d1_postmeta` VALUES("3595", "2343", "_g1_gmaps_metabox", "a:2:{s:17:\"precontent_map_id\";s:4:\"none\";s:16:\"prefooter_map_id\";s:4:\"none\";}");
INSERT INTO `d1_postmeta` VALUES("3596", "2343", "_g1_subtitle", "");
INSERT INTO `d1_postmeta` VALUES("3597", "2343", "_g1", "a:5:{s:24:\"single_element_media_box\";s:0:\"\";s:21:\"single_element_slider\";s:0:\"\";s:24:\"single_element_sidebar_1\";s:0:\"\";s:26:\"single_element_breadcrumbs\";s:0:\"\";s:20:\"single_element_title\";s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("3598", "2347", "_form", "<p>Name *<br />\n    [text* text-794]</p>\n\n<p>Email *<br />\n    [email* email-369] </p>\n\n<p>Subject<br />\n    [text text-660]</p>\n\n<p>Your Message<br />\n[textarea textarea-465] </p>\n\n<p>[submit \"Send\"]</p>");
INSERT INTO `d1_postmeta` VALUES("3599", "2347", "_mail", "a:8:{s:7:\"subject\";s:10:\"[text-660]\";s:6:\"sender\";s:24:\"[text-794]< [email-369]>\";s:4:\"body\";s:168:\"From: [text-794] <[email-369]>\nSubject: [text-660]\n\nMessage Body:\n[textarea-465]\n\n--\nThis e-mail was sent from a contact form on NEB Catering (http://hrd.softons.cu.cc)\";s:9:\"recipient\";s:19:\"enquiry@softons.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `d1_postmeta` VALUES("3600", "2347", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:46:\"NEB Catering <wordpress@neb.softonssoft.cu.cc>\";s:4:\"body\";s:116:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on NEB Catering (http://hrd.softons.cu.cc)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:25:\"Reply-To: info@softons.in\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `d1_postmeta` VALUES("3601", "2347", "_messages", "a:21:{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:31:\"Please fill the required field.\";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.\";}");
INSERT INTO `d1_postmeta` VALUES("3602", "2347", "_additional_settings", "");
INSERT INTO `d1_postmeta` VALUES("3603", "2347", "_locale", "en_US");
INSERT INTO `d1_postmeta` VALUES("3604", "2349", "_wp_attached_file", "2014/10/aboutus-small.jpg");
INSERT INTO `d1_postmeta` VALUES("3605", "2349", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:400;s:6:\"height\";i:350;s:4:\"file\";s:25:\"2014/10/aboutus-small.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"aboutus-small-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"aboutus-small-300x262.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"g1_one_half\";a:4:{s:4:\"file\";s:25:\"aboutus-small-400x271.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:25:\"aboutus-small-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"g1_one_third_flexible\";a:4:{s:4:\"file\";s:25:\"aboutus-small-320x280.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:25:\"aboutus-small-239x134.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"g1_one_fourth_flexible\";a:4:{s:4:\"file\";s:25:\"aboutus-small-239x209.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:23:\"aboutus-small-55x55.jpg\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3606", "2349", "_edit_lock", "1413632414:2");
INSERT INTO `d1_postmeta` VALUES("3607", "2354", "_wp_attached_file", "2014/10/about-us-small-img.png");
INSERT INTO `d1_postmeta` VALUES("3608", "2354", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:250;s:4:\"file\";s:30:\"2014/10/about-us-small-img.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"about-us-small-img-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:30:\"about-us-small-img-300x180.png\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:30:\"about-us-small-img-239x134.png\";s:5:\"width\";i:239;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"g1_one_fourth_flexible\";a:4:{s:4:\"file\";s:30:\"about-us-small-img-239x199.png\";s:5:\"width\";i:239;s:6:\"height\";i:199;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:28:\"about-us-small-img-55x55.png\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3609", "2354", "_edit_lock", "1413632967:2");
INSERT INTO `d1_postmeta` VALUES("3610", "2357", "_menu_item_type", "post_type");
INSERT INTO `d1_postmeta` VALUES("3611", "2357", "_menu_item_menu_item_parent", "0");
INSERT INTO `d1_postmeta` VALUES("3612", "2357", "_menu_item_object_id", "2343");
INSERT INTO `d1_postmeta` VALUES("3613", "2357", "_menu_item_object", "page");
INSERT INTO `d1_postmeta` VALUES("3614", "2357", "_menu_item_target", "");
INSERT INTO `d1_postmeta` VALUES("3615", "2357", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `d1_postmeta` VALUES("3616", "2357", "_menu_item_xfn", "");
INSERT INTO `d1_postmeta` VALUES("3617", "2357", "_menu_item_url", "");
INSERT INTO `d1_postmeta` VALUES("3619", "2358", "_wp_attached_file", "2014/10/Contact-us.jpg");
INSERT INTO `d1_postmeta` VALUES("3620", "2358", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:968;s:6:\"height\";i:312;s:4:\"file\";s:22:\"2014/10/Contact-us.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Contact-us-150x150.jpg\";s:5:\"width\";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:\"Contact-us-300x96.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_two_third\";a:4:{s:4:\"file\";s:22:\"Contact-us-636x204.jpg\";s:5:\"width\";i:636;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"g1_one_half\";a:4:{s:4:\"file\";s:22:\"Contact-us-482x271.jpg\";s:5:\"width\";i:482;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:22:\"Contact-us-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"g1_one_third_flexible\";a:4:{s:4:\"file\";s:22:\"Contact-us-320x103.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:22:\"Contact-us-239x134.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"g1_one_fourth_flexible\";a:4:{s:4:\"file\";s:21:\"Contact-us-239x77.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:77;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:20:\"Contact-us-55x55.jpg\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3621", "2358", "_edit_lock", "1413634249:2");
INSERT INTO `d1_postmeta` VALUES("3623", "2368", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:350;s:6:\"height\";i:80;s:4:\"file\";s:19:\"2014/10/350x802.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"350x802-150x80.png\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"350x802-300x68.png\";s:5:\"width\";i:300;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:18:\"350x802-320x80.png\";s:5:\"width\";i:320;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"g1_one_third_flexible\";a:4:{s:4:\"file\";s:18:\"350x802-320x73.png\";s:5:\"width\";i:320;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:18:\"350x802-239x80.png\";s:5:\"width\";i:239;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"g1_one_fourth_flexible\";a:4:{s:4:\"file\";s:18:\"350x802-239x54.png\";s:5:\"width\";i:239;s:6:\"height\";i:54;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:17:\"350x802-55x55.png\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3624", "2369", "_wp_attached_file", "2014/10/NEB_Menu.jpg");
INSERT INTO `d1_postmeta` VALUES("3625", "2369", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:969;s:6:\"height\";i:4980;s:4:\"file\";s:20:\"2014/10/NEB_Menu.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"NEB_Menu-150x150.jpg\";s:5:\"width\";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:\"NEB_Menu-58x300.jpg\";s:5:\"width\";i:58;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"NEB_Menu-199x1024.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"g1_max\";a:4:{s:4:\"file\";s:21:\"NEB_Menu-968x4974.jpg\";s:5:\"width\";i:968;s:6:\"height\";i:4974;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_two_third\";a:4:{s:4:\"file\";s:21:\"NEB_Menu-636x3268.jpg\";s:5:\"width\";i:636;s:6:\"height\";i:3268;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"g1_one_half\";a:4:{s:4:\"file\";s:20:\"NEB_Menu-482x271.jpg\";s:5:\"width\";i:482;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:20:\"NEB_Menu-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"g1_one_third_flexible\";a:4:{s:4:\"file\";s:21:\"NEB_Menu-320x1644.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:1644;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:20:\"NEB_Menu-239x134.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"g1_one_fourth_flexible\";a:4:{s:4:\"file\";s:21:\"NEB_Menu-239x1228.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:1228;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:18:\"NEB_Menu-55x55.jpg\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3626", "2369", "_edit_lock", "1414470836:1");
INSERT INTO `d1_postmeta` VALUES("3627", "2371", "_wp_attached_file", "2014/10/350x803.png");
INSERT INTO `d1_postmeta` VALUES("3628", "2371", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:350;s:6:\"height\";i:80;s:4:\"file\";s:19:\"2014/10/350x803.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"350x803-150x80.png\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"350x803-300x68.png\";s:5:\"width\";i:300;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:18:\"350x803-320x80.png\";s:5:\"width\";i:320;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"g1_one_third_flexible\";a:4:{s:4:\"file\";s:18:\"350x803-320x73.png\";s:5:\"width\";i:320;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:18:\"350x803-239x80.png\";s:5:\"width\";i:239;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"g1_one_fourth_flexible\";a:4:{s:4:\"file\";s:18:\"350x803-239x54.png\";s:5:\"width\";i:239;s:6:\"height\";i:54;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:17:\"350x803-55x55.png\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3629", "2372", "_wp_attached_file", "2014/10/Mobile-logo1.png");
INSERT INTO `d1_postmeta` VALUES("3630", "2372", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:200;s:6:\"height\";i:40;s:4:\"file\";s:24:\"2014/10/Mobile-logo1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Mobile-logo1-150x40.png\";s:5:\"width\";i:150;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:22:\"Mobile-logo1-55x40.png\";s:5:\"width\";i:55;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3631", "2373", "_wp_attached_file", "2014/10/350x804.png");
INSERT INTO `d1_postmeta` VALUES("3632", "2373", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:350;s:6:\"height\";i:80;s:4:\"file\";s:19:\"2014/10/350x804.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"350x804-150x80.png\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"350x804-300x68.png\";s:5:\"width\";i:300;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:18:\"350x804-320x80.png\";s:5:\"width\";i:320;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"g1_one_third_flexible\";a:4:{s:4:\"file\";s:18:\"350x804-320x73.png\";s:5:\"width\";i:320;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:18:\"350x804-239x80.png\";s:5:\"width\";i:239;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"g1_one_fourth_flexible\";a:4:{s:4:\"file\";s:18:\"350x804-239x54.png\";s:5:\"width\";i:239;s:6:\"height\";i:54;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:17:\"350x804-55x55.png\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3633", "2374", "_wp_attached_file", "2014/10/Mobile-logo2.png");
INSERT INTO `d1_postmeta` VALUES("3634", "2374", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:200;s:6:\"height\";i:40;s:4:\"file\";s:24:\"2014/10/Mobile-logo2.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Mobile-logo2-150x40.png\";s:5:\"width\";i:150;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:22:\"Mobile-logo2-55x40.png\";s:5:\"width\";i:55;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3635", "2375", "_wp_attached_file", "2014/10/Menu-Neb2.jpg");
INSERT INTO `d1_postmeta` VALUES("3636", "2375", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:969;s:6:\"height\";i:4980;s:4:\"file\";s:21:\"2014/10/Menu-Neb2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Menu-Neb2-150x150.jpg\";s:5:\"width\";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:\"Menu-Neb2-58x300.jpg\";s:5:\"width\";i:58;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Menu-Neb2-199x1024.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"g1_max\";a:4:{s:4:\"file\";s:22:\"Menu-Neb2-968x4974.jpg\";s:5:\"width\";i:968;s:6:\"height\";i:4974;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_two_third\";a:4:{s:4:\"file\";s:22:\"Menu-Neb2-636x3268.jpg\";s:5:\"width\";i:636;s:6:\"height\";i:3268;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"g1_one_half\";a:4:{s:4:\"file\";s:21:\"Menu-Neb2-482x271.jpg\";s:5:\"width\";i:482;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:21:\"Menu-Neb2-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"g1_one_third_flexible\";a:4:{s:4:\"file\";s:22:\"Menu-Neb2-320x1644.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:1644;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:21:\"Menu-Neb2-239x134.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"g1_one_fourth_flexible\";a:4:{s:4:\"file\";s:22:\"Menu-Neb2-239x1228.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:1228;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:19:\"Menu-Neb2-55x55.jpg\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3637", "2375", "_edit_lock", "1414494043:1");
INSERT INTO `d1_postmeta` VALUES("3638", "2378", "_wp_attached_file", "2014/10/Menu-Neb3.jpg");
INSERT INTO `d1_postmeta` VALUES("3639", "2378", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:969;s:6:\"height\";i:4980;s:4:\"file\";s:21:\"2014/10/Menu-Neb3.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Menu-Neb3-150x150.jpg\";s:5:\"width\";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:\"Menu-Neb3-58x300.jpg\";s:5:\"width\";i:58;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Menu-Neb3-199x1024.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"g1_max\";a:4:{s:4:\"file\";s:22:\"Menu-Neb3-968x4974.jpg\";s:5:\"width\";i:968;s:6:\"height\";i:4974;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_two_third\";a:4:{s:4:\"file\";s:22:\"Menu-Neb3-636x3268.jpg\";s:5:\"width\";i:636;s:6:\"height\";i:3268;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"g1_one_half\";a:4:{s:4:\"file\";s:21:\"Menu-Neb3-482x271.jpg\";s:5:\"width\";i:482;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:21:\"Menu-Neb3-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"g1_one_third_flexible\";a:4:{s:4:\"file\";s:22:\"Menu-Neb3-320x1644.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:1644;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:21:\"Menu-Neb3-239x134.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"g1_one_fourth_flexible\";a:4:{s:4:\"file\";s:22:\"Menu-Neb3-239x1228.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:1228;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:19:\"Menu-Neb3-55x55.jpg\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3640", "2379", "_wp_attached_file", "2014/10/Menu-Neb4.jpg");
INSERT INTO `d1_postmeta` VALUES("3641", "2379", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:969;s:6:\"height\";i:4980;s:4:\"file\";s:21:\"2014/10/Menu-Neb4.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Menu-Neb4-150x150.jpg\";s:5:\"width\";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:\"Menu-Neb4-58x300.jpg\";s:5:\"width\";i:58;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Menu-Neb4-199x1024.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"g1_max\";a:4:{s:4:\"file\";s:22:\"Menu-Neb4-968x4974.jpg\";s:5:\"width\";i:968;s:6:\"height\";i:4974;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_two_third\";a:4:{s:4:\"file\";s:22:\"Menu-Neb4-636x3268.jpg\";s:5:\"width\";i:636;s:6:\"height\";i:3268;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"g1_one_half\";a:4:{s:4:\"file\";s:21:\"Menu-Neb4-482x271.jpg\";s:5:\"width\";i:482;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"g1_one_third\";a:4:{s:4:\"file\";s:21:\"Menu-Neb4-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"g1_one_third_flexible\";a:4:{s:4:\"file\";s:22:\"Menu-Neb4-320x1644.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:1644;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"g1_one_fourth\";a:4:{s:4:\"file\";s:21:\"Menu-Neb4-239x134.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"g1_one_fourth_flexible\";a:4:{s:4:\"file\";s:22:\"Menu-Neb4-239x1228.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:1228;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"g1_one_twelfth\";a:4:{s:4:\"file\";s:19:\"Menu-Neb4-55x55.jpg\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}");
INSERT INTO `d1_postmeta` VALUES("3642", "2379", "_edit_lock", "1414642070:1");

/* INSERT TABLE DATA: d1_posts */
INSERT INTO `d1_posts` VALUES("1", "1", "2014-08-21 17:58:01", "2014-08-21 17:58:01", "Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!", "Hello world!", "", "publish", "open", "open", "", "hello-world", "", "", "2014-08-21 17:58:01", "2014-08-21 17:58:01", "", "0", "http://hrd.softons.cu.cc/?p=1", "0", "post", "", "1");
INSERT INTO `d1_posts` VALUES("4", "1", "2014-08-21 18:05:12", "2014-08-21 18:05:12", "", "Old map", "", "publish", "closed", "closed", "", "old-map", "", "", "2014-08-21 18:58:35", "2014-08-21 18:58:35", "", "0", "http://hrd.softons.cu.cc/?p=4", "0", "g1_gmap", "", "0");
INSERT INTO `d1_posts` VALUES("5", "1", "2014-08-21 18:05:12", "2014-08-21 18:05:12", "", "", "", "publish", "open", "open", "", "5", "", "", "2014-08-21 18:05:12", "2014-08-21 18:05:12", "", "0", "http://hrd.softons.cu.cc/?p=5", "0", "g1_gmap_marker", "", "0");
INSERT INTO `d1_posts` VALUES("240", "1", "2013-03-07 19:22:00", "2013-03-07 19:22:00", "Etiam vulputate pretium bibendum. Aliquam cursus tortor nec nulla dignissim dictum. Nam ac enim semper, porttitor metus ullamcorper, cursus urna. Maecenas eu erat neque. Quisque sit amet justo in nisi consequat aliquam a id dui. Nullam sollicitudin tincidunt dignissim. Mauris non nisi purus. Morbi ultrices tortor blandit, malesuada erat sit amet, interdum libero. Sed bibendum pellentesque justo, nec ullamcorper mi viverra quis. Sed nec suscipit felis.\n\nCurabitur erat nunc, euismod eu mi eget, fermentum euismod mi. Pellentesque eleifend venenatis risus id pretium. Vestibulum at tellus et nisl semper congue. Mauris vel magna eu tortor aliquet auctor quis et tellus. Quisque venenatis risus non pulvinar sollicitudin. Fusce semper nisi non nunc bibendum venenatis. \n\nQuisque pulvinar massa nisi. Curabitur porta tellus vitae sem dictum bibendum. Suspendisse potenti. Donec mollis commodo lacinia. Suspendisse potenti. Sed mi elit, ornare quis justo eget, vulputate posuere sem.\n\nVivamus ornare enim id tellus dictum, non posuere dui vehicula. In pulvinar adipiscing augue at elementum. Proin quis sapien metus. Proin eleifend consectetur nulla, eu fringilla libero consequat ac. Ut consectetur aliquam sapien quis luctus. Etiam est purus, ullamcorper vitae tempor facilisis, tincidunt at lectus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. In sit amet pretium lorem. Nunc a fringilla eros. Duis porttitor tincidunt lectus, vel pulvinar odio. Aliquam consectetur orci nibh. Vivamus sed vehicula tortor.\n\nSed vitae blandit ligula, nec pellentesque tellus. Phasellus a ligula nec est tristique lobortis nec vel lorem. Aenean est arcu, scelerisque non eleifend in, rutrum quis sem. Praesent sed justo vel nunc sollicitudin laoreet at sed purus. Praesent sed erat vel quam scelerisque ultrices sed sit amet turpis. Suspendisse elementum malesuada ligula, sed accumsan tortor accumsan vitae. Duis laoreet elit non interdum mattis. Vivamus posuere elit nec dolor rutrum, id varius mi viverra. Proin mattis ligula eu commodo pretium. Donec id porttitor libero, id pretium nulla. Phasellus sed malesuada lectus, at consequat nibh.", "Cras ultrices lorem", "Turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit pellentesque ac scelerisque elit, sed auctor.", "publish", "open", "closed", "", "cras-ultrices-lorem", "", "", "2013-03-07 19:22:00", "2013-03-07 19:22:00", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_work&amp;p=240", "0", "g1_work", "", "0");
INSERT INTO `d1_posts` VALUES("241", "1", "2013-03-07 19:22:16", "2013-03-07 19:22:16", "Cras bibendum ultricies augue at consectetur. Suspendisse vehicula massa at arcu aliquet, eu lacinia nisi pharetra. Etiam vulputate pretium bibendum. Aliquam cursus tortor nec nulla dignissim dictum. Nam ac enim semper, porttitor metus ullamcorper, cursus urna. Maecenas eu erat neque. Quisque sit amet justo in nisi consequat aliquam a id dui. Nullam sollicitudin tincidunt dignissim. Mauris non nisi purus. Morbi ultrices tortor blandit, malesuada erat sit amet, interdum libero. Sed bibendum pellentesque justo, nec ullamcorper mi viverra quis. Sed nec suscipit felis.\n\nCurabitur erat nunc, euismod eu mi eget, fermentum euismod mi. Pellentesque eleifend venenatis risus id pretium. Vestibulum at tellus et nisl semper congue. Mauris vel magna eu tortor aliquet auctor quis et tellus. Quisque venenatis risus non pulvinar sollicitudin. Fusce semper nisi non nunc bibendum venenatis. Quisque pulvinar massa nisi. Curabitur porta tellus vitae sem dictum bibendum. Suspendisse potenti. Donec mollis commodo lacinia. Suspendisse potenti. Sed mi elit, ornare quis justo eget, vulputate posuere sem.\n\nVivamus ornare enim id tellus dictum, non posuere dui vehicula. In pulvinar adipiscing augue at elementum. Proin quis sapien metus. Proin eleifend consectetur nulla, eu fringilla libero consequat ac. Ut consectetur aliquam sapien quis luctus. Etiam est purus, ullamcorper vitae tempor facilisis, tincidunt at lectus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. In sit amet pretium lorem. Nunc a fringilla eros. Duis porttitor tincidunt lectus, vel pulvinar odio. Aliquam consectetur orci nibh. Vivamus sed vehicula tortor.\n\nSed vitae blandit ligula, nec pellentesque tellus. Phasellus a ligula nec est tristique lobortis nec vel lorem. Aenean est arcu, scelerisque non eleifend in, rutrum quis sem. Praesent sed justo vel nunc sollicitudin laoreet at sed purus. Praesent sed erat vel quam scelerisque ultrices sed sit amet turpis. Suspendisse elementum malesuada ligula, sed accumsan tortor accumsan vitae. Duis laoreet elit non interdum mattis. Vivamus posuere elit nec dolor rutrum, id varius mi viverra. Proin mattis ligula eu commodo pretium. Donec id porttitor libero, id pretium nulla. Phasellus sed malesuada lectus, at consequat nibh.", "Pulvinar Pellentesque Massa", "Auctor turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit pellentesque ac scelerisque elit, sed.", "publish", "open", "closed", "", "pulvinar-pellentesque-massa", "", "", "2013-03-07 19:22:16", "2013-03-07 19:22:16", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_work&amp;p=241", "0", "g1_work", "", "0");
INSERT INTO `d1_posts` VALUES("242", "1", "2013-03-07 19:22:35", "2013-03-07 19:22:35", "Vestibulum at tellus et nisl semper congue. Mauris vel magna eu tortor aliquet auctor quis et tellus. Quisque venenatis risus non pulvinar sollicitudin. Fusce semper nisi non nunc bibendum venenatis. Quisque pulvinar massa nisi. \n\nCurabitur porta tellus vitae sem dictum bibendum. Suspendisse potenti. Donec mollis commodo lacinia. Suspendisse potenti. Sed mi elit, ornare quis justo eget, vulputate posuere sem.\n\nVivamus ornare enim id tellus dictum, non posuere dui vehicula. In pulvinar adipiscing augue at elementum. Proin quis sapien metus. Proin eleifend consectetur nulla, eu fringilla libero consequat ac. Ut consectetur aliquam sapien quis luctus. Etiam est purus, ullamcorper vitae tempor facilisis, tincidunt at lectus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. \n\nIn sit amet pretium lorem. Nunc a fringilla eros. Duis porttitor tincidunt lectus, vel pulvinar odio. Aliquam consectetur orci nibh. Vivamus sed vehicula tortor.\n\nSed vitae blandit ligula, nec pellentesque tellus. Phasellus a ligula nec est tristique lobortis nec vel lorem. Aenean est arcu, scelerisque non eleifend in, rutrum quis sem. Praesent sed justo vel nunc sollicitudin laoreet at sed purus. \n\nPraesent sed erat vel quam scelerisque ultrices sed sit amet turpis. Suspendisse elementum malesuada ligula, sed accumsan tortor accumsan vitae. Duis laoreet elit non interdum mattis. Vivamus posuere elit nec dolor rutrum, id varius mi viverra. Proin mattis ligula eu commodo pretium. Donec id porttitor libero, id pretium nulla. Phasellus sed malesuada lectus, at consequat nibh.", "Suspendisse tempor nunc", "Elit, sed auctor turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit pellentesque ac scelerisque .", "publish", "open", "closed", "", "suspendisse-tempor-nunc", "", "", "2013-03-07 19:22:35", "2013-03-07 19:22:35", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_work&amp;p=242", "0", "g1_work", "", "0");
INSERT INTO `d1_posts` VALUES("243", "1", "2013-03-07 19:22:47", "2013-03-07 19:22:47", "Etiam vulputate turpis risus, lobortis varius lectus dictum eget. Phasellus tortor lectus, auctor a varius in, elementum sed magna. Proin at faucibus odio. In tincidunt gravida nisl, ac viverra nibh condimentum vel. Nunc condimentum urna non quam rutrum commodo. Ut mattis, velit eu mollis luctus, nisi ipsum bibendum est, eget laoreet ipsum ipsum et quam. Integer mollis dictum orci, quis interdum diam mollis non. Fusce eu suscipit eros. Nullam metus nisi, gravida eget egestas eget, fringilla in lectus. Vestibulum sit amet dapibus sem, ut sodales arcu. Nullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam. \n\nDonec mollis leo sed eros ullamcorper, in consequat magna volutpat. Nunc bibendum neque vitae felis feugiat fringilla et vitae nulla. Duis nisi neque, accumsan a diam ut, blandit faucibus urna.\nDuis mattis at elit eu ultricies. In a consequat leo, ut lacinia lorem. Praesent egestas neque vel sodales volutpat. Donec id eleifend diam. \n\nNulla tincidunt velit sit amet ligula interdum sagittis. Mauris sollicitudin lorem vitae lacinia pretium. Cras id vehicula dolor, eget volutpat arcu. Curabitur sagittis neque quis metus malesuada iaculis. Sed sit amet luctus enim. Integer nec convallis mauris, in commodo urna. Morbi id blandit arcu. Nam vehicula turpis ligula, eget tincidunt nisi dapibus at. Cras ultrices, lorem et lobortis placerat, sem massa molestie diam, ac lacinia risus lectus eget arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras sed suscipit velit.\n\nSed ullamcorper metus a ornare rhoncus. Nullam eu libero faucibus, gravida turpis sit amet, adipiscing odio. Nulla commodo blandit mauris, ut vulputate augue blandit non. Maecenas sem arcu, laoreet eu convallis ac, eleifend eget augue. Duis dolor lectus, consectetur ut eros eu, egestas congue erat. Duis hendrerit, sem in vehicula adipiscing, neque nisi ullamcorper libero, nec porta est lacus ornare metus. Fusce viverra, ipsum non iaculis rutrum, risus ante ullamcorper nisi, non cursus augue tellus in nulla. \n\nSed aliquam dui eu enim faucibus commodo. Sed non dolor eu orci accumsan dictum eu ut urna. Quisque dui mauris, vehicula ut felis condimentum, tincidunt varius magna. Donec sagittis lorem quis libero volutpat fermentum. Cras feugiat viverra porttitor. Etiam sagittis nunc in erat venenatis eleifend. Morbi gravida suscipit mi, id euismod orci lacinia ut. Nulla arcu dolor, dictum id dignissim at, iaculis mattis nisl.\n", "Suspendisse lectus risus", "Ac scelerisque elit, sed auctor turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit pellentesque .", "publish", "open", "closed", "", "suspendisse-lectus-risus", "", "", "2013-03-07 19:22:47", "2013-03-07 19:22:47", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_work&amp;p=243", "0", "g1_work", "", "0");
INSERT INTO `d1_posts` VALUES("244", "1", "2013-03-07 19:23:02", "2013-03-07 19:23:02", "Vestibulum sit amet dapibus sem, ut sodales arcu. Nullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam. Donec mollis leo sed eros ullamcorper, in consequat magna volutpat. Nunc bibendum neque vitae felis feugiat fringilla et vitae nulla. Duis nisi neque, accumsan a diam ut, blandit faucibus urna.\n\nDuis mattis at elit eu ultricies. In a consequat leo, ut lacinia lorem. Praesent egestas neque vel sodales volutpat. Donec id eleifend diam. Nulla tincidunt velit sit amet ligula interdum sagittis. Mauris sollicitudin lorem vitae lacinia pretium. Cras id vehicula dolor, eget volutpat arcu. Curabitur sagittis neque quis metus malesuada iaculis. Sed sit amet luctus enim. Integer nec convallis mauris, in commodo urna. Morbi id blandit arcu. Nam vehicula turpis ligula, eget tincidunt nisi dapibus at. \n\nCras ultrices, lorem et lobortis placerat, sem massa molestie diam, ac lacinia risus lectus eget arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras sed suscipit velit.\n\nSed ullamcorper metus a ornare rhoncus. Nullam eu libero faucibus, gravida turpis sit amet, adipiscing odio. Nulla commodo blandit mauris, ut vulputate augue blandit non. Maecenas sem arcu, laoreet eu convallis ac, eleifend eget augue. Duis dolor lectus, consectetur ut eros eu, egestas congue erat. Duis hendrerit, sem in vehicula adipiscing, neque nisi ullamcorper libero, nec porta est lacus ornare metus. Fusce viverra, ipsum non iaculis rutrum, risus ante ullamcorper nisi, non cursus augue tellus in nulla. \n\nSed aliquam dui eu enim faucibus commodo. Sed non dolor eu orci accumsan dictum eu ut urna. Quisque dui mauris, vehicula ut felis condimentum, tincidunt varius magna. Donec sagittis lorem quis libero volutpat fermentum. Cras feugiat viverra porttitor. Etiam sagittis nunc in erat venenatis eleifend. Morbi gravida suscipit mi, id euismod orci lacinia ut. Nulla arcu dolor, dictum id dignissim at, iaculis mattis nisl.", "Fusce viverra ipsum", "Pellentesque ac scelerisque elit, sed auctor turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit.", "publish", "open", "closed", "", "fusce-viverra-ipsum-non-iaculis", "", "", "2013-03-07 19:23:02", "2013-03-07 19:23:02", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_work&amp;p=244", "0", "g1_work", "", "0");
INSERT INTO `d1_posts` VALUES("245", "1", "2013-03-07 19:23:28", "2013-03-07 19:23:28", "Ut mattis, velit eu mollis luctus, nisi ipsum bibendum est, eget laoreet ipsum ipsum et quam. Integer mollis dictum orci, quis interdum diam mollis non. Fusce eu suscipit eros. Nullam metus nisi, gravida eget egestas eget, fringilla in lectus. Vestibulum sit amet dapibus sem, ut sodales arcu. \n\nNullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam. Donec mollis leo sed eros ullamcorper, in consequat magna volutpat. Nunc bibendum neque vitae felis feugiat fringilla et vitae nulla. Duis nisi neque, accumsan a diam ut, blandit faucibus urna.\n\nDuis mattis at elit eu ultricies. In a consequat leo, ut lacinia lorem. Praesent egestas neque vel sodales volutpat. Donec id eleifend diam. Nulla tincidunt velit sit amet ligula interdum sagittis. Mauris sollicitudin lorem vitae lacinia pretium. Cras id vehicula dolor, eget volutpat arcu. \n\nCurabitur sagittis neque quis metus malesuada iaculis. Sed sit amet luctus enim. Integer nec convallis mauris, in commodo urna. Morbi id blandit arcu. Nam vehicula turpis ligula, eget tincidunt nisi dapibus at. Cras ultrices, lorem et lobortis placerat, sem massa molestie diam, ac lacinia risus lectus eget arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras sed suscipit velit.\n\nSed ullamcorper metus a ornare rhoncus. Nullam eu libero faucibus, gravida turpis sit amet, adipiscing odio. Nulla commodo blandit mauris, ut vulputate augue blandit non. Maecenas sem arcu, laoreet eu convallis ac, eleifend eget augue. Duis dolor lectus, consectetur ut eros eu, egestas congue erat. Duis hendrerit, sem in vehicula adipiscing, neque nisi ullamcorper libero, nec porta est lacus ornare metus. Fusce viverra, ipsum non iaculis rutrum, risus ante ullamcorper nisi, non cursus augue tellus in nulla. \n\nSed aliquam dui eu enim faucibus commodo. Sed non dolor eu orci accumsan dictum eu ut urna. Quisque dui mauris, vehicula ut felis condimentum, tincidunt varius magna. Donec sagittis lorem quis libero volutpat fermentum. Cras feugiat viverra porttitor. Etiam sagittis nunc in erat venenatis eleifend. Morbi gravida suscipit mi, id euismod orci lacinia ut. Nulla arcu dolor, dictum id dignissim at, iaculis mattis nisl.\n\nMorbi nec ultricies felis, lacinia pharetra magna. In consequat posuere interdum. Nunc lobortis eleifend libero eget blandit. Donec eget felis tempus dui lobortis fringilla. Nunc non rhoncus magna. Nulla facilisi. Quisque posuere luctus sapien, eget bibendum neque commodo at. Donec luctus turpis quam, molestie rhoncus dolor vehicula vehicula. Nullam faucibus urna sed arcu molestie, eget congue est gravida. Suspendisse lectus risus, dignissim in pretium in, pulvinar et massa. \n\nMauris facilisis, nunc quis auctor dapibus, orci erat porttitor elit, eget interdum augue magna ornare urna. Suspendisse tempor nunc eu eros vehicula, non tempus turpis facilisis. Vestibulum commodo imperdiet erat congue porttitor.", "Donec sagittis lorem quis", "Ligula egestas. Mauris tempus quam eget dui consectetur sit amet dapibus ipsum tincidunt hendrerit facilisis aliquet . ", "publish", "open", "closed", "", "donec-sagittis-lorem-quis-libero", "", "", "2013-03-07 19:23:28", "2013-03-07 19:23:28", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_work&amp;p=245", "0", "g1_work", "", "0");
INSERT INTO `d1_posts` VALUES("246", "1", "2013-03-07 19:24:04", "2013-03-07 19:24:04", "Etiam vulputate turpis risus, lobortis varius lectus dictum eget. Phasellus tortor lectus, auctor a varius in, elementum sed magna. Proin at faucibus odio. In tincidunt gravida nisl, ac viverra nibh condimentum vel. Nunc condimentum urna non quam rutrum commodo. Ut mattis, velit eu mollis luctus, nisi ipsum bibendum est, eget laoreet ipsum ipsum et quam. Integer mollis dictum orci, quis interdum diam mollis non. Fusce eu suscipit eros. Nullam metus nisi, gravida eget egestas eget, fringilla in lectus. Vestibulum sit amet dapibus sem, ut sodales arcu. Nullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam. Donec mollis leo sed eros ullamcorper, in consequat magna volutpat. Nunc bibendum neque vitae felis feugiat fringilla et vitae nulla. Duis nisi neque, accumsan a diam ut, blandit faucibus urna.\n\nDuis mattis at elit eu ultricies. In a consequat leo, ut lacinia lorem. Praesent egestas neque vel sodales volutpat. Donec id eleifend diam. Nulla tincidunt velit sit amet ligula interdum sagittis. Mauris sollicitudin lorem vitae lacinia pretium. Cras id vehicula dolor, eget volutpat arcu. Curabitur sagittis neque quis metus malesuada iaculis. Sed sit amet luctus enim. Integer nec convallis mauris, in commodo urna. Morbi id blandit arcu. Nam vehicula turpis ligula, eget tincidunt nisi dapibus at. Cras ultrices, lorem et lobortis placerat, sem massa molestie diam, ac lacinia risus lectus eget arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras sed suscipit velit.\n\n<blockquote>Sed ullamcorper metus a ornare rhoncus. Nullam eu libero faucibus, gravida turpis sit amet, adipiscing odio. Nulla commodo blandit mauris, ut vulputate augue blandit non. Maecenas sem arcu, laoreet eu convallis ac, eleifend eget augue. Duis dolor lectus, consectetur ut eros eu, egestas congue erat. Duis hendrerit, sem in vehicula adipiscing, neque nisi ullamcorper libero, nec porta est lacus ornare metus. Fusce viverra, ipsum non iaculis rutrum, risus ante ullamcorper nisi, non cursus augue tellus in nulla. </blockquote>\n\nSed aliquam dui eu enim faucibus commodo. Sed non dolor eu orci accumsan dictum eu ut urna. Quisque dui mauris, vehicula ut felis condimentum, tincidunt varius magna. Donec sagittis lorem quis libero volutpat fermentum. Cras feugiat viverra porttitor. Etiam sagittis nunc in erat venenatis eleifend. Morbi gravida suscipit mi, id euismod orci lacinia ut. Nulla arcu dolor, dictum id dignissim at, iaculis mattis nisl.\n\nMorbi nec ultricies felis, lacinia pharetra magna. In consequat posuere interdum. Nunc lobortis eleifend libero eget blandit. Donec eget felis tempus dui lobortis fringilla. Nunc non rhoncus magna. Nulla facilisi. Quisque posuere luctus sapien, eget bibendum neque commodo at. Donec luctus turpis quam, molestie rhoncus dolor vehicula vehicula. Nullam faucibus urna sed arcu molestie, eget congue est gravida. Suspendisse lectus risus, dignissim in pretium in, pulvinar et massa. Mauris facilisis, nunc quis auctor dapibus, orci erat porttitor elit, eget interdum augue magna ornare urna. Suspendisse tempor nunc eu eros vehicula, non tempus turpis facilisis. Vestibulum commodo imperdiet erat congue porttitor.", "Sed ullamcorper metus", "Aliquet ligula egestas. Mauris tempus quam eget dui consectetur sit amet dapibus ipsum tincidunt hendrerit facilisis. ", "publish", "open", "closed", "", "sed-ullamcorper-metus", "", "", "2013-03-07 19:24:04", "2013-03-07 19:24:04", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_work&amp;p=246", "0", "g1_work", "", "0");
INSERT INTO `d1_posts` VALUES("248", "1", "2013-03-07 19:24:21", "2013-03-07 19:24:21", "Nulla vel arcu eu ligula venenatis consequat. Suspendisse facilisis, quam id facilisis eleifend, nunc est suscipit eros, non vulputate nulla enim ut quam. Fusce interdum dolor in libero ultricies sed vehicula mauris venenatis. Cras semper libero nec sem accumsan posuere. Duis tempus vulputate placerat. Sed volutpat fringilla justo eget consequat. \n\n[button link=\"/\" type=\"wide\" size=\"medium\"]Sample Button[/button]", "Overview on Right", "Facilisis aliquet ligula egestas. Mauris tempus quam eget dui consectetur sit amet dapibus ipsum tincidunt hendrerit . ", "publish", "open", "closed", "", "overview-on-right-work", "", "", "2013-03-07 19:24:21", "2013-03-07 19:24:21", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_work&amp;p=248", "0", "g1_work", "", "0");
INSERT INTO `d1_posts` VALUES("279", "1", "2012-03-11 14:47:57", "2012-03-11 14:47:57", "Cras bibendum ultricies augue at consectetur. Suspendisse vehicula massa at arcu aliquet, eu lacinia nisi pharetra. Etiam vulputate pretium bibendum. Aliquam cursus tortor nec nulla dignissim dictum. Nam ac enim semper, porttitor metus ullamcorper, cursus urna. Maecenas eu erat neque. Quisque sit amet justo in nisi consequat aliquam a id dui. Nullam sollicitudin tincidunt dignissim. Mauris non nisi purus. Morbi ultrices tortor blandit, malesuada erat sit amet, interdum libero. Sed bibendum pellentesque justo, nec ullamcorper mi viverra quis. Sed nec suscipit felis.\n\nCurabitur erat nunc, euismod eu mi eget, fermentum euismod mi. Pellentesque eleifend venenatis risus id pretium. Vestibulum at tellus et nisl semper congue. Mauris vel magna eu tortor aliquet auctor quis et tellus. Quisque venenatis risus non pulvinar sollicitudin. Fusce semper nisi non nunc bibendum venenatis. Quisque pulvinar massa nisi. Curabitur porta tellus vitae sem dictum bibendum. Suspendisse potenti. Donec mollis commodo lacinia. Suspendisse potenti. Sed mi elit, ornare quis justo eget, vulputate posuere sem.\n\n<strong>Attributions (photos):</strong>\n(c) copyright 2008, Blender Foundation / <a href=\"www.bigbuckbunny.org\">www.bigbuckbunny.org</a>", "Big Bunny Movie Gallery", "Lorem ipsum dolor sit amet, consectetur adipiscing elit pellentesque ac scelerisque elit, sed auctor. Turpis. ", "publish", "open", "closed", "", "big-bunny-movie-gallery", "", "", "2012-03-11 14:47:57", "2012-03-11 14:47:57", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_work&amp;p=279", "0", "g1_work", "", "0");
INSERT INTO `d1_posts` VALUES("489", "1", "2013-03-24 08:39:44", "2013-03-24 08:39:44", "", "Viewport Slider 1 - Home", "", "publish", "closed", "closed", "", "viewport-slider-1-home", "", "", "2013-03-24 08:39:44", "2013-03-24 08:39:44", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_simple_slider&amp;p=489", "0", "g1_simple_slider", "", "0");
INSERT INTO `d1_posts` VALUES("495", "1", "2013-03-24 09:38:03", "2013-03-24 09:38:03", "", "Ken Burns Slider 1 - Home", "", "publish", "closed", "closed", "", "ken-burns-slider-1-home", "", "", "2013-03-24 09:38:03", "2013-03-24 09:38:03", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_simple_slider&amp;p=495", "0", "g1_simple_slider", "", "0");
INSERT INTO `d1_posts` VALUES("499", "1", "2013-03-24 09:43:07", "2013-03-24 09:43:07", "", "Relay Slider 1 - Home", "", "publish", "closed", "closed", "", "relay-slider-1-home", "", "", "2013-03-24 09:43:07", "2013-03-24 09:43:07", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_simple_slider&amp;p=499", "0", "g1_simple_slider", "", "0");
INSERT INTO `d1_posts` VALUES("511", "1", "2013-03-24 10:12:55", "2013-03-24 10:12:55", "", "Stand Out Slider - Home", "", "publish", "closed", "closed", "", "stand-out-slider-home", "", "", "2013-03-24 10:12:55", "2013-03-24 10:12:55", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_simple_slider&amp;p=511", "0", "g1_simple_slider", "", "0");
INSERT INTO `d1_posts` VALUES("531", "1", "2013-04-06 11:33:28", "2013-04-06 11:33:28", "", "Simple Slider 1 - Home", "", "publish", "closed", "closed", "", "531", "", "", "2013-04-06 11:33:28", "2013-04-06 11:33:28", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_simple_slider&amp;p=531", "0", "g1_simple_slider", "", "0");
INSERT INTO `d1_posts` VALUES("249", "1", "2013-03-07 19:24:33", "2013-03-07 19:24:33", "Etiam vulputate turpis risus, lobortis varius lectus dictum eget. Phasellus tortor lectus, auctor a varius in, elementum sed magna. Proin at faucibus odio. In tincidunt gravida nisl, ac viverra nibh condimentum vel. \n\nNunc condimentum urna non quam rutrum commodo. Ut mattis, velit eu mollis luctus, nisi ipsum bibendum est, eget laoreet ipsum ipsum et quam. Integer mollis dictum orci, quis interdum diam mollis non. Fusce eu suscipit eros. ", "Overview on Left", "Hendrerit facilisis aliquet ligula egestas. Mauris tempus quam eget dui consectetur sit amet dapibus ipsum tincidunt. ", "publish", "open", "closed", "", "overview-on-left-work", "", "", "2013-03-07 19:24:33", "2013-03-07 19:24:33", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_work&amp;p=249", "0", "g1_work", "", "0");
INSERT INTO `d1_posts` VALUES("250", "1", "2013-03-07 19:24:45", "2013-03-07 19:24:45", "Suspendisse eleifend consequat dolor, eget fringilla justo rhoncus vitae. Pellentesque viverra odio a orci iaculis id lobortis sapien adipiscing. Morbi ultricies sapien eget dui pharetra eu sodales turpis lacinia. Proin ut est libero, ut molestie lacus. Donec aliquam risus id turpis fringilla adipiscing. Duis posuere metus non ipsum ultrices interdum. Mauris tellus nisl, auctor a pulvinar a, iaculis malesuada augue.\n\nAenean bibendum arcu sit amet erat tincidunt ut feugiat dolor ultrices. Ut vel consectetur odio. In hac habitasse platea dictumst. In et egestas lorem. Praesent sapien velit, dapibus quis luctus in, porttitor vel dolor. Donec elit purus, elementum at viverra at, suscipit eu ante. Morbi molestie viverra imperdiet. Nullam bibendum odio ut justo scelerisque hendrerit. Ut ut felis enim, at suscipit massa. In congue dapibus dui in fermentum. Donec consequat ante id justo egestas sagittis. Etiam vitae elit magna, vitae interdum nibh. Phasellus sed velit lorem.", "Audio Post Format", "Est quis iaculis ornare, eros risus interdum eros, a dapibus metus mi at tortor. Donec imperdiet, erat accumsan,.", "publish", "open", "closed", "", "my-work-10", "", "", "2013-03-07 19:24:45", "2013-03-07 19:24:45", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_work&amp;p=250", "0", "g1_work", "", "0");
INSERT INTO `d1_posts` VALUES("251", "1", "2013-03-07 19:25:01", "2013-03-07 19:25:01", "Pellentesque mollis erat et elit porta, ut venenatis augue dignissim. Maecenas nec tortor ante. Morbi purus leo, pellentesque non molestie sit amet, vehicula quis orci. Pellentesque ac scelerisque elit, sed auctor turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean dignissim ac leo et varius. Maecenas enim leo, pharetra nec cursus eu, pellentesque eget sapien. Morbi pellentesque non nulla a scelerisque. Phasellus porttitor sit amet nisi nec varius. Nam vitae laoreet ligula. Integer vel sollicitudin nulla, ac auctor massa.\n\nEtiam vulputate turpis risus, lobortis varius lectus dictum eget. Phasellus tortor lectus, auctor a varius in, elementum sed magna. Proin at faucibus odio. In tincidunt gravida nisl, ac viverra nibh condimentum vel. Nunc condimentum urna non quam rutrum commodo. Ut mattis, velit eu mollis luctus, nisi ipsum bibendum est, eget laoreet ipsum ipsum et quam. Integer mollis dictum orci, quis interdum diam mollis non. Fusce eu suscipit eros. Nullam metus nisi, gravida eget egestas eget, fringilla in lectus. \n\nVestibulum sit amet dapibus sem, ut sodales arcu. Nullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam. Donec mollis leo sed eros ullamcorper, in consequat magna volutpat. Nunc bibendum neque vitae felis feugiat fringilla et vitae nulla. Duis nisi neque, accumsan a diam ut, blandit faucibus urna.\n\nDuis mattis at elit eu ultricies. In a consequat leo, ut lacinia lorem. Praesent egestas neque vel sodales volutpat. Donec id eleifend diam. Nulla tincidunt velit sit amet ligula interdum sagittis. Mauris sollicitudin lorem vitae lacinia pretium. Cras id vehicula dolor, eget volutpat arcu. Curabitur sagittis neque quis metus malesuada iaculis. \n\nSed sit amet luctus enim. Integer nec convallis mauris, in commodo urna. Morbi id blandit arcu. Nam vehicula turpis ligula, eget tincidunt nisi dapibus at. Cras ultrices, lorem et lobortis placerat, sem massa molestie diam, ac lacinia risus lectus eget arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras sed suscipit velit.\n\nSed ullamcorper metus a ornare rhoncus. Nullam eu libero faucibus, gravida turpis sit amet, adipiscing odio. Nulla commodo blandit mauris, ut vulputate augue blandit non. Maecenas sem arcu, laoreet eu convallis ac, eleifend eget augue. Duis dolor lectus, consectetur ut eros eu, egestas congue erat. Duis hendrerit, sem in vehicula adipiscing, neque nisi ullamcorper libero, nec porta est lacus ornare metus. Fusce viverra, ipsum non iaculis rutrum, risus ante ullamcorper nisi, non cursus augue tellus in nulla. \n\nSed aliquam dui eu enim faucibus commodo. Sed non dolor eu orci accumsan dictum eu ut urna. Quisque dui mauris, vehicula ut felis condimentum, tincidunt varius magna. Donec sagittis lorem quis libero volutpat fermentum. Cras feugiat viverra porttitor. Etiam sagittis nunc in erat venenatis eleifend. Morbi gravida suscipit mi, id euismod orci lacinia ut. Nulla arcu dolor, dictum id dignissim at, iaculis mattis nisl.", "Audio Post Format", "Pellentesque mollis erat et elit porta, ut venenatis augue dignissim. Maecenas nec tortor ante. Morbi purus leo, pellentesque non molestie sit amet", "publish", "open", "closed", "", "audio-post-format-work", "", "", "2013-03-07 19:25:01", "2013-03-07 19:25:01", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_work&amp;p=251", "0", "g1_work", "", "0");
INSERT INTO `d1_posts` VALUES("252", "1", "2013-03-07 19:25:14", "2013-03-07 19:25:14", "Pellentesque mollis erat et elit porta, ut venenatis augue dignissim. Maecenas nec tortor ante. Morbi purus leo, pellentesque non molestie sit amet, vehicula quis orci. Pellentesque ac scelerisque elit, sed auctor turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean dignissim ac leo et varius. Maecenas enim leo, pharetra nec cursus eu, pellentesque eget sapien. Morbi pellentesque non nulla a scelerisque. Phasellus porttitor sit amet nisi nec varius. Nam vitae laoreet ligula. Integer vel sollicitudin nulla, ac auctor massa.\n\nEtiam vulputate turpis risus, lobortis varius lectus dictum eget. Phasellus tortor lectus, auctor a varius in, elementum sed magna. Proin at faucibus odio. In tincidunt gravida nisl, ac viverra nibh condimentum vel. Nunc condimentum urna non quam rutrum commodo. Ut mattis, velit eu mollis luctus, nisi ipsum bibendum est, eget laoreet ipsum ipsum et quam. Integer mollis dictum orci, quis interdum diam mollis non. Fusce eu suscipit eros. Nullam metus nisi, gravida eget egestas eget, fringilla in lectus. \n\nVestibulum sit amet dapibus sem, ut sodales arcu. Nullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam. Donec mollis leo sed eros ullamcorper, in consequat magna volutpat. Nunc bibendum neque vitae felis feugiat fringilla et vitae nulla. Duis nisi neque, accumsan a diam ut, blandit faucibus urna.", "Vestibulum sit amet dapibus sem", "Accumsan, est quis iaculis ornare, eros risus interdum eros, a dapibus metus mi at tortor. Donec imperdiet, erat.", "publish", "open", "closed", "", "vestibulum-sit-amet-dapibus-sem", "", "", "2013-03-07 19:25:14", "2013-03-07 19:25:14", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_work&amp;p=252", "0", "g1_work", "", "0");
INSERT INTO `d1_posts` VALUES("253", "1", "2013-03-07 19:25:48", "2013-03-07 19:25:48", "", "Link Post Format", "", "publish", "open", "closed", "", "work-link-post-format", "", "", "2013-03-07 19:25:48", "2013-03-07 19:25:48", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_work&amp;p=253", "0", "g1_work", "", "0");
INSERT INTO `d1_posts` VALUES("254", "1", "2013-03-07 19:26:05", "2013-03-07 19:26:05", "Sed vel dui congue, dapibus turpis ut, congue elit. Suspendisse sodales eleifend sapien vel scelerisque. Nam ullamcorper accumsan augue, gravida consequat tortor blandit sed. Maecenas vitae odio eu lacus accumsan venenatis lacinia pretium urna. In vulputate augue at lorem aliquet, et sagittis nisi consectetur. Etiam mattis est et vehicula semper. Sed ornare quis purus vel cursus. \n\nNullam accumsan, est quis iaculis ornare, eros risus interdum eros, a dapibus metus mi at tortor. Donec imperdiet, erat at rhoncus ullamcorper, augue risus facilisis est, in bibendum dolor massa ut nibh. Mauris elementum non leo eget sollicitudin. Nam vulputate faucibus feugiat. Nulla accumsan nunc laoreet, bibendum mi vitae, mattis sem. \n\n\n<h2>Our Results</h2>\n\n[one_half]\n\n[progress_bar value=\"40\" icon=\"plane\" direction=\"left\" size=\"medium\" style=\"simple\"]Total Sales Before[/progress_bar]\n\n[/one_half]\n\n[one_half_last]\n\n[progress_bar value=\"97\" icon=\"plane\" size=\"medium\" style=\"solid\"]And After Our Improvements[/progress_bar]\n\n[/one_half_last]\n\n[one_half]\n\n[progress_bar value=\"35\" icon=\"plane\" direction=\"left\" size=\"medium\" style=\"simple\"]Total Sales Before[/progress_bar]\n\n[/one_half]\n\n[one_half_last]\n\n[progress_bar value=\"87\" icon=\"plane\" size=\"medium\" style=\"solid\"]After Our Improvements[/progress_bar]\n\n[/one_half_last]\n\n[one_half]\n\n[progress_bar value=\"31\" icon=\"plane\" direction=\"left\" size=\"medium\" style=\"simple\"]Total Sales Before[/progress_bar]\n\n[/one_half]\n\n[one_half_last]\n\n[progress_bar value=\"72\" icon=\"plane\" size=\"medium\" style=\"solid\"]After Our Improvements[/progress_bar]\n\n[/one_half_last]\n\n[divider]\n\nSed vel dui congue, dapibus turpis ut, congue elit. Suspendisse sodales eleifend sapien vel scelerisque. Nam ullamcorper accumsan augue, gravida consequat tortor blandit sed. Maecenas vitae odio eu lacus accumsan venenatis lacinia pretium urna. In vulputate augue at lorem aliquet, et sagittis nisi consectetur. Etiam mattis est et vehicula semper. Sed ornare quis purus vel cursus.\n\nNullam accumsan, est quis iaculis ornare, eros risus interdum eros, a dapibus metus mi at tortor. Donec imperdiet, erat at rhoncus ullamcorper, augue risus facilisis est, in bibendum dolor massa ut nibh. Mauris elementum non leo eget sollicitudin. Nam vulputate faucibus feugiat. Nulla accumsan nunc laoreet, bibendum mi vitae, mattis sem.\n\n[divider]\n\n[one_half]\n\n<h2 style=\"text-align:right;\">Total Sales Before</h2>\n\n[duplicator start=\"0\" stop=\"28\" max=\"50\" step=\"1\" duration=\"1000\" icon=\"trophy\" color=\"9b59b6\" direction=\"left\" style=\"simple\"]\n\n[/one_half]\n\n[one_half_last]\n\n<h2 style=\"text-align:left;\">After Our Improvements</h2>\n\n[duplicator start=\"0\" stop=\"47\" max=\"50\" step=\"1\" duration=\"1000\" icon=\"trophy\" style=\"simple\"]\n\n[/one_half_last]", "Sample Case Study", "Nullam accumsan, est quis iaculis ornare, eros risus interdum eros, a dapibus metus mi at tortor. Donec imperdiet, erat at rhoncus ullamcorper, augue risus", "publish", "open", "closed", "", "sample-case-study", "", "", "2013-03-07 19:26:05", "2013-03-07 19:26:05", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_work&amp;p=254", "0", "g1_work", "", "0");
INSERT INTO `d1_posts` VALUES("255", "1", "2013-03-07 19:26:20", "2013-03-07 19:26:20", "<h2>The Problem</h2>\n\nDonec faucibus placerat nulla, ac scelerisque sem tempor vel. In at lorem sit amet nisi tincidunt viverra. In vel turpis nulla. Donec tincidunt, elit sit amet accumsan tristique, massa justo volutpat nisl, ac feugiat dui orci et nulla. Quisque id arcu elit, eu molestie nisi. Vestibulum eget eros nulla, ut mattis enim. Morbi ipsum risus, semper non laoreet quis, aliquet at odio. Aliquam convallis lectus tempor urna aliquet non ultrices risus blandit.\n\n[one_half]\n\n[numbers stop=\"98\" icon=\"heart\" size=\"big\"]Vivamus Adispicing Elit[/numbers]\n\n[/one_half]\n\n[one_half_last]\n\n[numbers stop=\"253\" icon=\"rocket\" size=\"big\"]Vivamus Adispicing Elit[/numbers]\n\n[/one_half_last]\n\nIn hac habitasse platea dictumst. Nam bibendum metus ut dolor hendrerit pellentesque. Aenean non dui non libero tempus dictum. Etiam pulvinar condimentum euismod. Quisque nibh libero, adipiscing sit amet tristique non, porta non arcu. Vestibulum ut rhoncus odio. Donec sed viverra urna. Proin rutrum lobortis nisl, ac hendrerit odio condimentum eu. \n\nDonec sit amet elit vitae lectus dapibus auctor. Suspendisse vehicula, magna vel auctor posuere, nulla ante iaculis justo, sit amet posuere libero purus eu leo. Aliquam et ante in purus luctus vulputate vel sit amet elit.\n\n[quote size=\"medium\" author_name=\"George Novitzky\" author_description=\"Some Company\" author_image=\"/wp-content/uploads/2013/06/quote_author_image_1_v01.jpg\" style=\"solid\"]\n\nDonec sed viverra urna. Proin rutrum lobortis nisl, ac hendrerit odio condimentum eu. Donec sit amet elit vitae lectus dapibus auctor. Suspendisse vehicula, magna vel auctor posuere, nulla ante iaculis justo, sit amet posuere libero purus eu leo. Aliquam et ante in purus luctus vulputate vel sit amet elit.\n\n[/quote]\n\nPellentesque risus tellus, sodales in laoreet et, malesuada vel tellus. Fusce placerat viverra faucibus. Donec aliquet porttitor enim eu rhoncus. Integer ante elit, vulputate sit amet faucibus vel, placerat ac risus. Morbi ut orci lectus, in volutpat quam. Maecenas eu porttitor mi. Cras id quam sit amet sem ultricies venenatis sed vel ligula. \n\n<h2>Our Results</h2>\n\nVestibulum eget semper mauris. Sed hendrerit viverra ipsum commodo consequat. Mauris vel nisl a ante suscipit varius. Ut vulputate nisi quis leo suscipit dapibus. In erat libero, gravida pellentesque aliquet a, pellentesque ut nulla. Nullam bibendum mi at odio aliquet eu dignissim purus sagittis. ", "Right Sidebar", "Quisque id arcu elit, eu molestie nisi. Vestibulum eget eros nulla, ut mattis enim. Morbi ipsum risus, semper non laoreet quis, aliquet at odio.", "publish", "closed", "closed", "", "right-sidebar-work", "", "", "2013-03-07 19:26:20", "2013-03-07 19:26:20", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_work&amp;p=255", "0", "g1_work", "", "0");
INSERT INTO `d1_posts` VALUES("256", "1", "2013-03-07 19:26:36", "2013-03-07 19:26:36", "<h2>The Problem</h2>\n\nDonec arcu dui, vestibulum vel viverra ut, faucibus sit amet ligula. Etiam sapien odio, commodo sed imperdiet vel, feugiat eget ligula. Nullam vitae nisl mauris, vitae sagittis eros. Morbi vehicula condimentum condimentum. Donec iaculis, odio vel dignissim egestas, ipsum nibh semper tortor, id pharetra tellus sapien non metus. Nunc interdum, urna vel ultrices aliquet, nunc velit facilisis odio, eget rutrum nulla sem ut mi. \n\n<h2>Our Solutions</h2>\n\nPraesent quis convallis est. Praesent quam enim, rutrum eget cursus et, iaculis at nisl. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Aliquam luctus risus sed urna lacinia convallis. Maecenas nulla lacus, auctor in congue in, pharetra sed dolor.\n\n\n<h2>Final Results</h2>\n\n[one_third]\n\n[progress_circle icon=\"heart\" style=\"simple\"]\n\n<h3>Mauris nec elit eu urna tempus molestie</h3>\n\n[/one_third]\n\n[one_third]\n\n[progress_circle icon=\"heart\"]\n\n<h3>Mauris nec elit eu urna tempus molestie</h3>\n\n[/one_third]\n\n[one_third_last]\n\n[progress_circle icon=\"heart\" style=\"simple\"]\n\n<h3>Mauris nec elit eu urna tempus molestie</h3>\n\n[/one_third_last]", "Left Sidebar", "Eu est quam, eget cursus purus. Donec faucibus placerat nulla, ac scelerisque sem tempor vel. In at lorem sit amet cras.", "publish", "closed", "closed", "", "left-sidebar-work", "", "", "2013-03-07 19:26:36", "2013-03-07 19:26:36", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_work&amp;p=256", "0", "g1_work", "", "0");
INSERT INTO `d1_posts` VALUES("257", "1", "2013-03-07 19:26:54", "2013-03-07 19:26:54", "[one_third]\n\n<h2>Fun Facts</h2>\n\n150 DRUNK COFFEES\n\n[duplicator icon=\"coffee\" stop=\"15\" max=\"15\"]\n\nFaucibus placerat nulla, ac scelerisque sem tempor vel. In at lorem sit amet nisi tincidunt viverra adispicing elit.\n\n[/one_third]\n\n[two_third_last]\n\n<h2>The Problem</h2>\n\nCras eu est quam, eget cursus purus. Donec faucibus placerat nulla, ac scelerisque sem tempor vel. In at lorem sit amet nisi tincidunt viverra. In vel turpis nulla. Donec tincidunt, elit sit amet accumsan tristique, massa justo volutpat nisl, ac feugiat dui orci et nulla. Quisque id arcu elit, eu molestie nisi. \n\n<h2>Our Solution</h2>\n\nVestibulum eget eros nulla, ut mattis enim. Morbi ipsum risus, semper non laoreet quis, aliquet at odio. Aliquam convallis lectus tempor urna aliquet non ultrices risus blandit. In hac habitasse platea dictumst. Nam bibendum metus ut dolor hendrerit pellentesque. Aenean non dui non libero tempus dictum. Etiam pulvinar condimentum euismod. Quisque nibh libero, adipiscing sit amet tristique non, porta non arcu. Vestibulum ut rhoncus odio. Donec sed viverra urna.\n\n<h2>Our Results</h2>\n\nProin rutrum lobortis nisl, ac hendrerit odio condimentum eu. Donec sit amet elit vitae lectus dapibus auctor. Suspendisse vehicula, magna vel auctor posuere, nulla ante iaculis justo, sit amet posuere libero purus eu leo. Aliquam et ante in purus luctus vulputate vel sit amet elit.\n\n[/two_third_last]", "Full Width", "Cras eu est quam, eget cursus purus. Donec faucibus placerat nulla, ac scelerisque sem tempor vel.", "publish", "open", "closed", "", "full-width-work", "", "", "2013-03-07 19:26:54", "2013-03-07 19:26:54", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_work&amp;p=257", "0", "g1_work", "", "1");
INSERT INTO `d1_posts` VALUES("258", "1", "2013-03-07 19:27:05", "2013-03-07 19:27:05", "[one_third]\n\n<h2>[icon icon=\"star-half-empty\" size=\"small\" style=\"solid\" shape=\"circle\"] The Problem</h2>\n\nVestibulum dignissim tempor nunc non suscipit. Donec quis sem ipsum, ut ullamcorper dui. Ut adipiscing, tellus eu sagittis fermentum, eros orci venenatis ante, ut tristique augue lectus at neque. \n\nCurabitur gravida eros volutpat enim ullamcorper ullamcorper bibendum purus tristique. Sed non nulla diam. Donec vel felis et felis fermentum venenatis. Duis dapibus hendrerit metus, eget feugiat ante dictum vehicula. \n\n[/one_third]\n\n[one_third]\n\n<h2>[icon icon=\"wrench\" size=\"small\" style=\"solid\" shape=\"circle\"] Our Solutions</h2>\n\nPellentesque fermentum euismod dictum. Sed convallis enim vitae lacus tempus eget imperdiet nibh adipiscing. Mauris nec elit eu urna tempus molestie. Integer faucibus libero in est varius aliquet. Duis accumsan justo eget enim tincidunt in accumsan urna auctor.\n\nIn a risus ac felis ullamcorper lobortis sit amet ac quam. Integer ligula felis, adipiscing non tincidunt vitae, blandit ac justo. Donec purus nisi, imperdiet a pretium quis, tempor a ante.\n\n[/one_third]\n\n[one_third_last]\n\n<h2>[icon icon=\"star\" size=\"small\" style=\"solid\" shape=\"circle\"] Our Results</h2>\n\nProin elit eros, imperdiet in pharetra eget, facilisis sit amet purus. Nulla facilisi. Suspendisse velit lectus, dictum id porttitor molestie, tempor in nisl. Maecenas viverra ultrices nibh ac imperdiet. Fusce sit amet turpis non lorem pharetra condimentum. \n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas at tincidunt mauris. \n\n[/one_third_last]\n\n[divider icon=\"heart\"]\n\n[one_third]\n\n<h2>And Here Is What Our Client Has to Say About Us</h2>\n\n[/one_third]\n\n[two_third_last]\n\n[quote author_name=\"George Novitzky\" author_description=\"Some Company\" author_image=\"/wp-content/uploads/2013/06/quote_author_image_1_v01.jpg\" size=\"medium\" style=\"solid\"]\n\nAuctor sit amet feugiat eu &amp; viverra ac felis. Nullam gravida neque quis augue vestibulum euismod. Suspendisse risus tortor, varius ac malesuada in, mattis vitae mauris.\n\n[/quote] \n\n[/two_third_last]\n\n<strong>Attributions (video):</strong>\n(c) copyright 2008, Blender Foundation / <a href=\"www.bigbuckbunny.org\">www.bigbuckbunny.org</a>", "Post Formats", "Nulla vel arcu eu ligula venenatis consequat,aspendisse facilisis.", "publish", "open", "closed", "", "post-formats-work", "", "", "2013-03-07 19:27:05", "2013-03-07 19:27:05", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_work&amp;p=258", "0", "g1_work", "", "0");
INSERT INTO `d1_posts` VALUES("259", "1", "2013-03-07 19:27:28", "2013-03-07 19:27:28", "[two_third]\n\n<h2>The Problem</h2>\n\nNulla vel arcu eu ligula venenatis consequat. Suspendisse facilisis, quam id facilisis eleifend, nunc est suscipit eros, non vulputate nulla enim ut quam. Fusce interdum dolor in libero ultricies sed vehicula mauris venenatis. Cras semper libero nec sem accumsan posuere. Duis tempus vulputate placerat. Sed volutpat fringilla justo eget consequat. Nullam euismod malesuada sapien. Curabitur vitae enim urna. In hac habitasse platea dictumst. Nam vestibulum eros sit amet nisi hendrerit facilisis aliquet ligula egestas. Mauris tempus quam eget dui consectetur sit amet dapibus ipsum tincidunt.\n\n<h2>Our Solution</h2>\n\nVivamus id diam metus, vitae tempus nisi. Nam est libero, ornare condimentum tincidunt ac, eleifend lacinia augue. Duis sit amet sapien sit amet erat ultrices consequat. Phasellus placerat ultricies pharetra. Ut quis massa neque. Nulla nec nisi ligula, ut lacinia lectus. Vivamus facilisis dapibus libero eget sollicitudin. Donec magna nisl, fermentum vitae sodales quis, mattis a diam. \n\nSuspendisse at neque mauris, at tincidunt ligula. Duis viverra fringilla sem, vitae aliquam arcu faucibus nec. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Praesent euismod felis at massa commodo ac blandit nunc aliquam. Nunc vehicula volutpat scelerisque. Integer sollicitudin cursus neque nec bibendum. \n\n[/two_third]\n\n[one_third_last]\n\n<h2>Our Results</h2>\n\n[numbers stop=\"78\" icon=\"truck\" suffix=\"%\"]More Deliveries on Time[/numbers]\n\n[numbers stop=\"87\" icon=\"gift\" suffix=\"%\"]More Sales Completed[/numbers]\n\n[/one_third_last]\n\n", "Control Visible Elements", "Duis tempus vulputate placerat. Sed volutpat fringilla justo vendo.\n", "publish", "open", "closed", "", "control-visible-elements", "", "", "2013-03-07 19:27:28", "2013-03-07 19:27:28", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_work&amp;p=259", "0", "g1_work", "", "0");
INSERT INTO `d1_posts` VALUES("2370", "1", "2014-10-28 04:28:05", "2014-10-28 04:28:05", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<h3 style=\"text-align: center;\"><strong>NEB\'s Trendy &amp; Traditional Menus</strong></h3>\r\n<p style=\"text-align: justify;\">Beyond our impressive menus, we are proficient in handling all aspects of your events. Our highly experienced catering staff permits us to arrange and customize elegant functions and parties to suit your individual style.</p>\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/NEB_Menu.jpg\" alt=\"\" />\r\n\r\n[/section]", "Our Catalog", "", "inherit", "open", "open", "", "2307-revision-v1", "", "", "2014-10-28 04:28:05", "2014-10-28 04:28:05", "", "2307", "http://hrd.softons.cu.cc/2307-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("262", "1", "2013-03-07 19:28:21", "2013-03-07 19:28:21", "[two_third]\n\n<h2>The Problem</h2>\n\nNulla vel arcu eu ligula venenatis consequat. Suspendisse facilisis, quam id facilisis eleifend, nunc est suscipit eros, non vulputate nulla enim ut quam. Fusce interdum dolor in libero ultricies sed vehicula mauris venenatis. Cras semper libero nec sem accumsan posuere. Duis tempus vulputate placerat. Sed volutpat fringilla justo eget consequat. \n\nNullam euismod malesuada sapien. Curabitur vitae enim urna. In hac habitasse platea dictumst. Nam vestibulum eros sit amet nisi hendrerit facilisis aliquet ligula egestas. Mauris tempus quam eget dui consectetur sit amet dapibus ipsum tincidunt.\n\n<h2>Our Solution</h2>\n\nVivamus id diam metus, vitae tempus nisi. Nam est libero, ornare condimentum tincidunt ac, eleifend lacinia augue. Duis sit amet sapien sit amet erat ultrices consequat. Phasellus placerat ultricies pharetra. Ut quis massa neque. Nulla nec nisi ligula, ut lacinia lectus. Vivamus facilisis dapibus libero eget sollicitudin. Donec magna nisl, fermentum vitae sodales quis, mattis a diam. \n\nSuspendisse at neque mauris, at tincidunt ligula. Duis viverra fringilla sem, vitae aliquam arcu faucibus nec. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Praesent euismod felis at massa commodo ac blandit nunc aliquam. Nunc vehicula volutpat scelerisque. Integer sollicitudin cursus neque nec bibendum. \n\n[/two_third]\n\n[one_third_last]\n\n<h2>Our Results</h2>\n\n[one_half]\n\n[progress_circle value=\"78\" icon=\"truck\" style=\"solid\"]\n\n78% More<br />Deliveries on Time\n\n[/one_half]\n\n[one_half_last]\n\n[progress_circle value=\"87\" icon=\"gift\" style=\"simple\"]\n\n87% More<br />Sales Completed\n\n[/one_half_last]\n\n\n\n[/one_third_last]", "Multiple Templates", "Nulla vel arcu eu ligula venenatis consequat,aspendisse facilisis.", "publish", "open", "closed", "", "multiple-templates-ok", "", "", "2013-03-07 19:28:21", "2013-03-07 19:28:21", "", "0", "http://3clicks.bringthepixel.com/?post_type=g1_work&amp;p=262", "0", "g1_work", "", "1");
INSERT INTO `d1_posts` VALUES("2024", "1", "2014-08-21 18:13:23", "2014-08-21 18:13:23", "", "Home", "", "publish", "open", "open", "", "home", "", "", "2014-08-21 18:23:20", "2014-08-21 18:23:20", "", "0", "http://hrd.softons.cu.cc/?p=2024", "1", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("124", "1", "2013-03-05 10:40:12", "2013-03-05 10:40:12", "[precontent]\r\n<h2 style=\"text-align: center;\">Come Experience The Real Taste Of A Quality Food &amp; Make Your Event A Memorable One To You And Your Guests!!</h2>\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwala, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labours. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n<h2 style=\"text-align: center;\">A Wedding is incomplete without Delicious Food</h2>\r\n[divider style=\"simple\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/home-section-neb.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">ACHIEVEMENTS</h3>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">OUR GOAL</h3>\r\n[/one_half_last]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">We at family, NEB Celebrated the Silver Jubille function at R.K.Mahal on 2011 and We Received a best service award from chennai friends association on 2011.</p>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">Our Goal is to give the best catering services to the international standards economically and to full fill your all Food &amp; Beverage needs.</p>\r\n[/one_half_last]\r\n\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[/section]", "Home", "", "publish", "closed", "closed", "", "home", "", "", "2014-10-18 07:01:52", "2014-10-18 07:01:52", "", "0", "http://3clicks.bringthepixel.com/?page_id=124", "10", "page", "", "0");
INSERT INTO `d1_posts` VALUES("2210", "1", "2014-10-16 07:21:45", "2014-10-16 07:21:45", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\nWe offer a huge variety of custom menu styles but to be honest the MetroStyle is our favourite. You\'ll love it too.\r\n\r\n<a href=\"/customize/menu-layouts/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\nWhen your site is ready, stop for a while and ask our designer what can be improved. What\'s more, it\'s a totally <strong>FREE</strong> service!\r\n\r\n<a href=\"/metromenu/design-audits/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\nBesides the awesome Revolution Slider, the 3Clicks Theme includes some new and unconventional sliders.\r\n\r\n<a href=\"/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\nACHIVEMENTS\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\ngdrt\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h2>Some Facts</h2>\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 07:21:45", "2014-10-16 07:21:45", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2209", "1", "2014-10-16 07:19:32", "2014-10-16 07:19:32", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<h2>[icon icon=\"th-large\" size=\"small\" style=\"solid\"][/icon] MetroStyle Menus</h2>\r\nWe offer a huge variety of custom menu styles but to be honest the MetroStyle is our favourite. You\'ll love it too.\r\n\r\n<a href=\"/customize/menu-layouts/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<h2>[icon icon=\"magic\" size=\"small\" style=\"solid\"][/icon] Design Audits</h2>\r\nWhen your site is ready, stop for a while and ask our designer what can be improved. What\'s more, it\'s a totally <strong>FREE</strong> service!\r\n\r\n<a href=\"/metromenu/design-audits/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n<h2>[icon icon=\"gift\" size=\"small\" style=\"solid\"][/icon] Brand New Sliders</h2>\r\nBesides the awesome Revolution Slider, the 3Clicks Theme includes some new and unconventional sliders.\r\n\r\n<a href=\"/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\nACHIVEMENTS\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\ngdrt\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h2>Some Facts</h2>\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 07:19:32", "2014-10-16 07:19:32", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("67", "1", "2013-03-04 14:15:29", "2013-03-04 14:15:29", "Edward White: Vestibulum rhoncus velit et tellus sodales vitae elementum purus mollis.\n\nSandra Thompson: Suspendisse vitae dolor ac dui gravida malesuada vitae at dui.\n\nEdward White: Nulla ut eros urna, sit amet dapibus ligula.\n\nSandra Thompson: Praesent venenatis consectetur mauris, sed eleifend purus vestibulum non.\n\nEdward White: Vivamus volutpat ipsum justo, eu adipiscing velit.\n\nSandra Thompson: Nullam iaculis luctus lacus, eu dapibus elit mollis non.\n\nEdward White: Aliquam at massa ac quam tempor hendrerit eu a nisi.", "Chat About Business 3", "", "publish", "open", "open", "", "chat-about-business-3", "", "", "2013-03-04 14:15:29", "2013-03-04 14:15:29", "", "0", "http://3clicks.bringthepixel.com/?p=67", "0", "post", "", "0");
INSERT INTO `d1_posts` VALUES("74", "1", "2013-03-04 14:31:15", "2013-03-04 14:31:15", "I like WordPress so much. It\'s easy to extend and you don\'t have to be some PHP ninja", "", "", "publish", "open", "open", "", "74", "", "", "2013-03-04 14:31:15", "2013-03-04 14:31:15", "", "0", "http://3clicks.bringthepixel.com/?p=74", "0", "post", "", "0");
INSERT INTO `d1_posts` VALUES("89", "1", "2013-03-04 14:53:40", "2013-03-04 14:53:40", "In tincidunt gravida nisl, ac viverra nibh condimentum vel. Nunc condimentum urna non quam rutrum commodo. Ut mattis, velit eu mollis luctus, nisi ipsum bibendum est, eget laoreet ipsum ipsum et quam. Integer mollis dictum orci, quis interdum diam mollis non. Fusce eu suscipit eros. \n\n<!--more-->\n\nNullam metus nisi, gravida eget egestas eget, fringilla in lectus. Vestibulum sit amet dapibus sem, ut sodales arcu. Nullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam. Donec mollis leo sed eros ullamcorper, in consequat magna volutpat. Nunc bibendum neque vitae felis feugiat fringilla et vitae nulla. Duis nisi neque, accumsan a diam ut, blandit faucibus urna.\n\nDuis mattis at elit eu ultricies. In a consequat leo, ut lacinia lorem. Praesent egestas neque vel sodales volutpat. Donec id eleifend diam. Nulla tincidunt velit sit amet ligula interdum sagittis. Mauris sollicitudin lorem vitae lacinia pretium. Cras id vehicula dolor, eget volutpat arcu. Curabitur sagittis neque quis metus malesuada iaculis. \n\nSed sit amet luctus enim. Integer nec convallis mauris, in commodo urna. Morbi id blandit arcu. Nam vehicula turpis ligula, eget tincidunt nisi dapibus at. Cras ultrices, lorem et lobortis placerat, sem massa molestie diam, ac lacinia risus lectus eget arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras sed suscipit velit.\n\nSed ullamcorper metus a ornare rhoncus. Nullam eu libero faucibus, gravida turpis sit amet, adipiscing odio. Nulla commodo blandit mauris, ut vulputate augue blandit non. Maecenas sem arcu, laoreet eu convallis ac, eleifend eget augue. Duis dolor lectus, consectetur ut eros eu, egestas congue erat. Duis hendrerit, sem in vehicula adipiscing, neque nisi ullamcorper libero, nec porta est lacus ornare metus. Fusce viverra, ipsum non iaculis rutrum, risus ante ullamcorper nisi, non cursus augue tellus in nulla. Sed aliquam dui eu enim faucibus commodo. \n\nSed non dolor eu orci accumsan dictum eu ut urna. Quisque dui mauris, vehicula ut felis condimentum, tincidunt varius magna. Donec sagittis lorem quis libero volutpat fermentum. Cras feugiat viverra porttitor. Etiam sagittis nunc in erat venenatis eleifend. Morbi gravida suscipit mi, id euismod orci lacinia ut. Nulla arcu dolor, dictum id dignissim at, iaculis mattis nisl.\n\nMorbi nec ultricies felis, lacinia pharetra magna. In consequat posuere interdum. Nunc lobortis eleifend libero eget blandit. Donec eget felis tempus dui lobortis fringilla. Nunc non rhoncus magna. Nulla facilisi. Quisque posuere luctus sapien, eget bibendum neque commodo at. Donec luctus turpis quam, molestie rhoncus dolor vehicula vehicula. Nullam faucibus urna sed arcu molestie, eget congue est gravida. Suspendisse lectus risus, dignissim in pretium in, pulvinar et massa. Mauris facilisis, nunc quis auctor dapibus, orci erat porttitor elit, eget interdum augue magna ornare urna. Suspendisse tempor nunc eu eros vehicula, non tempus turpis facilisis. Vestibulum commodo imperdiet erat congue porttitor. Nunc nisl lorem", "Nunc condimentum urna non quam", "Morbi id blandit arcu. Nam vehicula turpis ligula, Sed sit amet luctus enim. Integer nec convallis mauris, in commodo urna.", "publish", "open", "open", "", "89", "", "", "2013-03-04 14:53:40", "2013-03-04 14:53:40", "", "0", "http://3clicks.bringthepixel.com/?p=89", "0", "post", "", "0");
INSERT INTO `d1_posts` VALUES("90", "1", "2013-03-04 14:54:49", "2013-03-04 14:54:49", "Integer mollis dictum orci, quis interdum diam mollis non. Fusce eu suscipit eros. Nullam metus nisi, gravida eget egestas eget, fringilla in lectus. Vestibulum sit amet dapibus sem, ut sodales arcu. Nullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam. Donec mollis leo sed eros ullamcorper, in consequat magna volutpat. Nunc bibendum neque vitae felis feugiat fringilla et vitae nulla. Duis nisi neque, accumsan a diam ut, blandit faucibus urna.\n\n<!--more-->\n\nDuis mattis at elit eu ultricies. In a consequat leo, ut lacinia lorem. Praesent egestas neque vel sodales volutpat. Donec id eleifend diam. Nulla tincidunt velit sit amet ligula interdum sagittis. Mauris sollicitudin lorem vitae lacinia pretium. Cras id vehicula dolor, eget volutpat arcu. Curabitur sagittis neque quis metus malesuada iaculis. Sed sit amet luctus enim. \n\nInteger nec convallis mauris, in commodo urna. Morbi id blandit arcu. Nam vehicula turpis ligula, eget tincidunt nisi dapibus at. Cras ultrices, lorem et lobortis placerat, sem massa molestie diam, ac lacinia risus lectus eget arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras sed suscipit velit.\n\nSed ullamcorper metus a ornare rhoncus. Nullam eu libero faucibus, gravida turpis sit amet, adipiscing odio. Nulla commodo blandit mauris, ut vulputate augue blandit non. Maecenas sem arcu, laoreet eu convallis ac, eleifend eget augue. Duis dolor lectus, consectetur ut eros eu, egestas congue erat. Duis hendrerit, sem in vehicula adipiscing, neque nisi ullamcorper libero, nec porta est lacus ornare metus. Fusce viverra, ipsum non iaculis rutrum, risus ante ullamcorper nisi, non cursus augue tellus in nulla. \n\nSed aliquam dui eu enim faucibus commodo. Sed non dolor eu orci accumsan dictum eu ut urna. Quisque dui mauris, vehicula ut felis condimentum, tincidunt varius magna. Donec sagittis lorem quis libero volutpat fermentum. Cras feugiat viverra porttitor. Etiam sagittis nunc in erat venenatis eleifend. Morbi gravida suscipit mi, id euismod orci lacinia ut. Nulla arcu dolor, dictum id dignissim at, iaculis mattis nisl.\n\nMorbi nec ultricies felis, lacinia pharetra magna. In consequat posuere interdum. Nunc lobortis eleifend libero eget blandit. Donec eget felis tempus dui lobortis fringilla. Nunc non rhoncus magna. Nulla facilisi. Quisque posuere luctus sapien, eget bibendum neque commodo at. Donec luctus turpis quam, molestie rhoncus dolor vehicula vehicula. Nullam faucibus urna sed arcu molestie, eget congue est gravida. Suspendisse lectus risus, dignissim in pretium in, pulvinar et massa. Mauris facilisis, nunc quis auctor dapibus, orci erat porttitor elit, eget interdum augue magna ornare urna. Suspendisse tempor nunc eu eros vehicula, non tempus turpis facilisis. Vestibulum commodo imperdiet erat congue porttitor. Nunc nisl lorem", "Integer mollis dictum orci", "Morbi id blandit arcu. Nam vehicula turpis ligula. Sed sit amet luctus enim. Integer nec convallis mauris, in commodo urna.", "publish", "open", "open", "", "integer-mollis-dictum-orci", "", "", "2013-03-04 14:54:49", "2013-03-04 14:54:49", "", "0", "http://3clicks.bringthepixel.com/?p=90", "0", "post", "", "0");
INSERT INTO `d1_posts` VALUES("91", "1", "2013-03-04 14:55:31", "2013-03-04 14:55:31", "Phasellus tortor lectus, auctor a varius in, elementum sed magna. Proin at faucibus odio. In tincidunt gravida nisl, ac viverra nibh condimentum vel. Nunc condimentum urna non quam rutrum commodo. Ut mattis, velit eu mollis luctus, nisi ipsum bibendum est, eget laoreet ipsum ipsum et quam. Integer mollis dictum orci, quis interdum diam mollis non. Fusce eu suscipit eros. Nullam metus nisi, gravida eget egestas eget, fringilla in lectus. \n\n<!--more-->\n\nVestibulum sit amet dapibus sem, ut sodales arcu. Nullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam. Donec mollis leo sed eros ullamcorper, in consequat magna volutpat. Nunc bibendum neque vitae felis feugiat fringilla et vitae nulla. Duis nisi neque, accumsan a diam ut, blandit faucibus urna.\n\nDuis mattis at elit eu ultricies. In a consequat leo, ut lacinia lorem. Praesent egestas neque vel sodales volutpat. Donec id eleifend diam. Nulla tincidunt velit sit amet ligula interdum sagittis. Mauris sollicitudin lorem vitae lacinia pretium. Cras id vehicula dolor, eget volutpat arcu. Curabitur sagittis neque quis metus malesuada iaculis. Sed sit amet luctus enim. Integer nec convallis mauris, in commodo urna. Morbi id blandit arcu. Nam vehicula turpis ligula, eget tincidunt nisi dapibus at. Cras ultrices, lorem et lobortis placerat, sem massa molestie diam, ac lacinia risus lectus eget arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras sed suscipit velit.\n\nSed ullamcorper metus a ornare rhoncus. Nullam eu libero faucibus, gravida turpis sit amet, adipiscing odio. Nulla commodo blandit mauris, ut vulputate augue blandit non. Maecenas sem arcu, laoreet eu convallis ac, eleifend eget augue. Duis dolor lectus, consectetur ut eros eu, egestas congue erat. Duis hendrerit, sem in vehicula adipiscing, neque nisi ullamcorper libero, nec porta est lacus ornare metus. Fusce viverra, ipsum non iaculis rutrum, risus ante ullamcorper nisi, non cursus augue tellus in nulla. \n\nSed aliquam dui eu enim faucibus commodo. Sed non dolor eu orci accumsan dictum eu ut urna. Quisque dui mauris, vehicula ut felis condimentum, tincidunt varius magna. Donec sagittis lorem quis libero volutpat fermentum. Cras feugiat viverra porttitor. Etiam sagittis nunc in erat venenatis eleifend. Morbi gravida suscipit mi, id euismod orci lacinia ut. Nulla arcu dolor, dictum id dignissim at, iaculis mattis nisl.\n\nMorbi nec ultricies felis, lacinia pharetra magna. In consequat posuere interdum. Nunc lobortis eleifend libero eget blandit. Donec eget felis tempus dui lobortis fringilla. Nunc non rhoncus magna. Nulla facilisi. Quisque posuere luctus sapien, eget bibendum neque commodo at. Donec luctus turpis quam, molestie rhoncus dolor vehicula vehicula. Nullam faucibus urna sed arcu molestie, eget congue est gravida. Suspendisse lectus risus, dignissim in pretium in, pulvinar et massa. Mauris facilisis, nunc quis auctor dapibus, orci erat porttitor elit, eget interdum augue magna ornare urna. Suspendisse tempor nunc eu eros vehicula, non tempus turpis facilisis. Vestibulum commodo imperdiet erat congue porttitor. Nunc nisl lorem", "Donec id eleifend diam", "Integer nec convallis mauris, in commodo urna. Morbi id blandit arcu. Nam vehicula turpis ligula. Sed sit amet luctus enim.", "publish", "open", "open", "", "donec-id-eleifend-diam", "", "", "2013-03-04 14:55:31", "2013-03-04 14:55:31", "", "0", "http://3clicks.bringthepixel.com/?p=91", "0", "post", "", "0");
INSERT INTO `d1_posts` VALUES("94", "1", "2013-03-04 15:00:35", "2013-03-04 15:00:35", "Etiam vulputate turpis risus, lobortis varius lectus dictum eget. Phasellus tortor lectus, auctor a varius in, elementum sed magna. Proin at faucibus odio. In tincidunt gravida nisl, ac viverra nibh condimentum vel. Nunc condimentum urna non quam rutrum commodo. Ut mattis, velit eu mollis luctus, nisi ipsum bibendum est, eget laoreet ipsum ipsum et quam. Integer mollis dictum orci, quis interdum diam mollis non. Fusce eu suscipit eros. Nullam metus nisi, gravida eget egestas eget, fringilla in lectus. Vestibulum sit amet dapibus sem, ut sodales arcu. Nullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam. Donec mollis leo sed eros ullamcorper, in consequat magna volutpat. Nunc bibendum neque vitae felis feugiat fringilla et vitae nulla. Duis nisi neque, accumsan a diam ut, blandit faucibus urna.\n\n<!--more-->\n\nDuis mattis at elit eu ultricies. In a consequat leo, ut lacinia lorem. Praesent egestas neque vel sodales volutpat. Donec id eleifend diam. Nulla tincidunt velit sit amet ligula interdum sagittis. Mauris sollicitudin lorem vitae lacinia pretium. Cras id vehicula dolor, eget volutpat arcu. Curabitur sagittis neque quis metus malesuada iaculis. Sed sit amet luctus enim. Integer nec convallis mauris, in commodo urna. Morbi id blandit arcu. Nam vehicula turpis ligula, eget tincidunt nisi dapibus at. Cras ultrices, lorem et lobortis placerat, sem massa molestie diam, ac lacinia risus lectus eget arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras sed suscipit velit.\n\nSed ullamcorper metus a ornare rhoncus. Nullam eu libero faucibus, gravida turpis sit amet, adipiscing odio. Nulla commodo blandit mauris, ut vulputate augue blandit non. Maecenas sem arcu, laoreet eu convallis ac, eleifend eget augue. Duis dolor lectus, consectetur ut eros eu, egestas congue erat. Duis hendrerit, sem in vehicula adipiscing, neque nisi ullamcorper libero, nec porta est lacus ornare metus. Fusce viverra, ipsum non iaculis rutrum, risus ante ullamcorper nisi, non cursus augue tellus in nulla. Sed aliquam dui eu enim faucibus commodo. Sed non dolor eu orci accumsan dictum eu ut urna. Quisque dui mauris, vehicula ut felis condimentum, tincidunt varius magna. Donec sagittis lorem quis libero volutpat fermentum. Cras feugiat viverra porttitor. Etiam sagittis nunc in erat venenatis eleifend. Morbi gravida suscipit mi, id euismod orci lacinia ut. Nulla arcu dolor, dictum id dignissim at, iaculis mattis nisl.", "Vulputate turpis risus", "Sed sit amet luctus enim. Integer nec convallis mauris, in commodo urna. Morbi id blandit arcu. Nam vehicula turpis ligula.", "publish", "open", "open", "", "94", "", "", "2013-03-04 15:00:35", "2013-03-04 15:00:35", "", "0", "http://3clicks.bringthepixel.com/?p=94", "0", "post", "", "0");
INSERT INTO `d1_posts` VALUES("95", "1", "2013-03-04 15:01:46", "2013-03-04 15:01:46", "Vestibulum sit amet dapibus sem, ut sodales arcu. Nullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam. Donec mollis leo sed eros ullamcorper, in consequat magna volutpat. Nunc bibendum neque vitae felis feugiat fringilla et vitae nulla. Duis nisi neque, accumsan a diam ut, blandit faucibus urna.\n\n<!--more-->\n\nDuis mattis at elit eu ultricies. In a consequat leo, ut lacinia lorem. Praesent egestas neque vel sodales volutpat. Donec id eleifend diam. Nulla tincidunt velit sit amet ligula interdum sagittis. Mauris sollicitudin lorem vitae lacinia pretium. Cras id vehicula dolor, eget volutpat arcu. Curabitur sagittis neque quis metus malesuada iaculis. Sed sit amet luctus enim. Integer nec convallis mauris, in commodo urna. Morbi id blandit arcu. Nam vehicula turpis ligula, eget tincidunt nisi dapibus at. Cras ultrices, lorem et lobortis placerat, sem massa molestie diam, ac lacinia risus lectus eget arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras sed suscipit velit.\n\nSed ullamcorper metus a ornare rhoncus. Nullam eu libero faucibus, gravida turpis sit amet, adipiscing odio. Nulla commodo blandit mauris, ut vulputate augue blandit non. Maecenas sem arcu, laoreet eu convallis ac, eleifend eget augue. Duis dolor lectus, consectetur ut eros eu, egestas congue erat. Duis hendrerit, sem in vehicula adipiscing, neque nisi ullamcorper libero, nec porta est lacus ornare metus. Fusce viverra, ipsum non iaculis rutrum, risus ante ullamcorper nisi, non cursus augue tellus in nulla. \n\nSed aliquam dui eu enim faucibus commodo. Sed non dolor eu orci accumsan dictum eu ut urna. Quisque dui mauris, vehicula ut felis condimentum, tincidunt varius magna. Donec sagittis lorem quis libero volutpat fermentum. Cras feugiat viverra porttitor. Etiam sagittis nunc in erat venenatis eleifend. Morbi gravida suscipit mi, id euismod orci lacinia ut. Nulla arcu dolor, dictum id dignissim at, iaculis mattis nisl.\n\nMorbi nec ultricies felis, lacinia pharetra magna. In consequat posuere interdum. Nunc lobortis eleifend libero eget blandit. Donec eget felis tempus dui lobortis fringilla. Nunc non rhoncus magna. Nulla facilisi. Quisque posuere luctus sapien, eget bibendum neque commodo at. Donec luctus turpis quam, molestie rhoncus dolor vehicula vehicula. Nullam faucibus urna sed arcu molestie, eget congue est gravida. Suspendisse lectus risus, dignissim in pretium in, pulvinar et massa. Mauris facilisis, nunc quis auctor dapibus, orci erat porttitor elit, eget interdum augue magna ornare urna. Suspendisse tempor nunc eu eros vehicula, non tempus turpis facilisis. Vestibulum commodo imperdiet erat congue porttitor. Nunc nisl lorem", "Vestibulum sit amet dapibus sem", "Aenean non facilisis quam. Nullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. ", "publish", "open", "open", "", "vestibulum-sit-amet-dapibus-sem", "", "", "2013-03-04 15:01:46", "2013-03-04 15:01:46", "", "0", "http://3clicks.bringthepixel.com/?p=95", "0", "post", "", "0");
INSERT INTO `d1_posts` VALUES("96", "1", "2013-03-04 15:03:11", "2013-03-04 15:03:11", "Phasellus tortor lectus, auctor a varius in, elementum sed magna. Proin at faucibus odio. In tincidunt gravida nisl, ac viverra nibh condimentum vel. Nunc condimentum urna non quam rutrum commodo. Ut mattis, velit eu mollis luctus, nisi ipsum bibendum est, eget laoreet ipsum ipsum et quam. Integer mollis dictum orci, quis interdum diam mollis non. Fusce eu suscipit eros. Nullam metus nisi, gravida eget egestas eget, fringilla in lectus. Vestibulum sit amet dapibus sem, ut sodales arcu. \n\n<!--more-->\n\nNullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam. Donec mollis leo sed eros ullamcorper, in consequat magna volutpat. Nunc bibendum neque vitae felis feugiat fringilla et vitae nulla. Duis nisi neque, accumsan a diam ut, blandit faucibus urna.\n\nDuis mattis at elit eu ultricies. In a consequat leo, ut lacinia lorem. Praesent egestas neque vel sodales volutpat. Donec id eleifend diam. Nulla tincidunt velit sit amet ligula interdum sagittis. Mauris sollicitudin lorem vitae lacinia pretium. Cras id vehicula dolor, eget volutpat arcu. Curabitur sagittis neque quis metus malesuada iaculis. Sed sit amet luctus enim. \n\nInteger nec convallis mauris, in commodo urna. Morbi id blandit arcu. Nam vehicula turpis ligula, eget tincidunt nisi dapibus at. Cras ultrices, lorem et lobortis placerat, sem massa molestie diam, ac lacinia risus lectus eget arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras sed suscipit velit.\n\nSed ullamcorper metus a ornare rhoncus. Nullam eu libero faucibus, gravida turpis sit amet, adipiscing odio. Nulla commodo blandit mauris, ut vulputate augue blandit non. Maecenas sem arcu, laoreet eu convallis ac, eleifend eget augue. Duis dolor lectus, consectetur ut eros eu, egestas congue erat. Duis hendrerit, sem in vehicula adipiscing, neque nisi ullamcorper libero, nec porta est lacus ornare metus. Fusce viverra, ipsum non iaculis rutrum, risus ante ullamcorper nisi, non cursus augue tellus in nulla. Sed aliquam dui eu enim faucibus commodo. Sed non dolor eu orci accumsan dictum eu ut urna. Quisque dui mauris, vehicula ut felis condimentum, tincidunt varius magna. Donec sagittis lorem quis libero volutpat fermentum. Cras feugiat viverra porttitor. Etiam sagittis nunc in erat venenatis eleifend. Morbi gravida suscipit mi, id euismod orci lacinia ut. Nulla arcu dolor, dictum id dignissim at, iaculis mattis nisl.\n\nMorbi nec ultricies felis, lacinia pharetra magna. In consequat posuere interdum. Nunc lobortis eleifend libero eget blandit. Donec eget felis tempus dui lobortis fringilla. Nunc non rhoncus magna. Nulla facilisi. Quisque posuere luctus sapien, eget bibendum neque commodo at. Donec luctus turpis quam, molestie rhoncus dolor vehicula vehicula. \n\nNullam faucibus urna sed arcu molestie, eget congue est gravida. Suspendisse lectus risus, dignissim in pretium in, pulvinar et massa. Mauris facilisis, nunc quis auctor dapibus, orci erat porttitor elit, eget interdum augue magna ornare urna. Suspendisse tempor nunc eu eros vehicula, non tempus turpis facilisis. Vestibulum commodo imperdiet erat congue porttitor. Nunc nisl lorem", "Proin at faucibus odio", "Aliquam blandit sapien massa. Aenean non facilisis quam. Nullam vel nibh id dolor tristique viverra. ", "publish", "open", "open", "", "proin-at-faucibus-odio", "", "", "2013-03-04 15:03:11", "2013-03-04 15:03:11", "", "0", "http://3clicks.bringthepixel.com/?p=96", "0", "post", "", "0");
INSERT INTO `d1_posts` VALUES("97", "1", "2013-03-04 15:04:16", "2013-03-04 15:04:16", "Phasellus tortor lectus, auctor a varius in, elementum sed magna. Proin at faucibus odio. In tincidunt gravida nisl, ac viverra nibh condimentum vel. Nunc condimentum urna non quam rutrum commodo. Ut mattis, velit eu mollis luctus, nisi ipsum bibendum est, eget laoreet ipsum ipsum et quam. Integer mollis dictum orci, quis interdum diam mollis non. Fusce eu suscipit eros. \n\n<!--more-->\n\nNullam metus nisi, gravida eget egestas eget, fringilla in lectus. Vestibulum sit amet dapibus sem, ut sodales arcu. Nullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam. Donec mollis leo sed eros ullamcorper, in consequat magna volutpat. Nunc bibendum neque vitae felis feugiat fringilla et vitae nulla. Duis nisi neque, accumsan a diam ut, blandit faucibus urna.\n\nDuis mattis at elit eu ultricies. In a consequat leo, ut lacinia lorem. Praesent egestas neque vel sodales volutpat. Donec id eleifend diam. Nulla tincidunt velit sit amet ligula interdum sagittis. Mauris sollicitudin lorem vitae lacinia pretium. Cras id vehicula dolor, eget volutpat arcu. Curabitur sagittis neque quis metus malesuada iaculis. \n\nSed sit amet luctus enim. Integer nec convallis mauris, in commodo urna. Morbi id blandit arcu. Nam vehicula turpis ligula, eget tincidunt nisi dapibus at. Cras ultrices, lorem et lobortis placerat, sem massa molestie diam, ac lacinia risus lectus eget arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras sed suscipit velit.\n\nSed ullamcorper metus a ornare rhoncus. Nullam eu libero faucibus, gravida turpis sit amet, adipiscing odio. Nulla commodo blandit mauris, ut vulputate augue blandit non. Maecenas sem arcu, laoreet eu convallis ac, eleifend eget augue. Duis dolor lectus, consectetur ut eros eu, egestas congue erat. Duis hendrerit, sem in vehicula adipiscing, neque nisi ullamcorper libero, nec porta est lacus ornare metus. Fusce viverra, ipsum non iaculis rutrum, risus ante ullamcorper nisi, non cursus augue tellus in nulla. Sed aliquam dui eu enim faucibus commodo. \n\nSed non dolor eu orci accumsan dictum eu ut urna. Quisque dui mauris, vehicula ut felis condimentum, tincidunt varius magna. Donec sagittis lorem quis libero volutpat fermentum. Cras feugiat viverra porttitor. Etiam sagittis nunc in erat venenatis eleifend. Morbi gravida suscipit mi, id euismod orci lacinia ut. Nulla arcu dolor, dictum id dignissim at, iaculis mattis nisl.\n\nMorbi nec ultricies felis, lacinia pharetra magna. In consequat posuere interdum. Nunc lobortis eleifend libero eget blandit. Donec eget felis tempus dui lobortis fringilla. Nunc non rhoncus magna. Nulla facilisi. Quisque posuere luctus sapien, eget bibendum neque commodo at. Donec luctus turpis quam, molestie rhoncus dolor vehicula vehicula. Nullam faucibus urna sed arcu molestie, eget congue est gravida. \n\nSuspendisse lectus risus, dignissim in pretium in, pulvinar et massa. Mauris facilisis, nunc quis auctor dapibus, orci erat porttitor elit, eget interdum augue magna ornare urna. Suspendisse tempor nunc eu eros vehicula, non tempus turpis facilisis. Vestibulum commodo imperdiet erat congue porttitor. Nunc nisl lorem", "Fringilla in lectus", "Nullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam.", "publish", "open", "open", "", "fringilla-in-lectus", "", "", "2013-03-04 15:04:16", "2013-03-04 15:04:16", "", "0", "http://3clicks.bringthepixel.com/?p=97", "0", "post", "", "0");
INSERT INTO `d1_posts` VALUES("98", "1", "2013-03-04 15:05:05", "2013-03-04 15:05:05", "Phasellus tortor lectus, auctor a varius in, elementum sed magna. Proin at faucibus odio. In tincidunt gravida nisl, ac viverra nibh condimentum vel. Nunc condimentum urna non quam rutrum commodo. Ut mattis, velit eu mollis luctus, nisi ipsum bibendum est, eget laoreet ipsum ipsum et quam. Integer mollis dictum orci, quis interdum diam mollis non. Fusce eu suscipit eros. \n\n<!--more-->\n\nNullam metus nisi, gravida eget egestas eget, fringilla in lectus. Vestibulum sit amet dapibus sem, ut sodales arcu. Nullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam. Donec mollis leo sed eros ullamcorper, in consequat magna volutpat. Nunc bibendum neque vitae felis feugiat fringilla et vitae nulla. Duis nisi neque, accumsan a diam ut, blandit faucibus urna.\n\n<blockquote>Duis mattis at elit eu ultricies. In a consequat leo, ut lacinia lorem. Praesent egestas neque vel sodales volutpat. Donec id eleifend diam. Nulla tincidunt velit sit amet ligula interdum sagittis. Mauris sollicitudin lorem vitae lacinia pretium. Cras id vehicula dolor, eget volutpat arcu. Curabitur sagittis neque quis metus malesuada iaculis. Sed sit amet luctus enim. Integer nec convallis mauris, in commodo urna. Morbi id blandit arcu. Nam vehicula turpis ligula, eget tincidunt nisi dapibus at. </blockquote>\n\nCras ultrices, lorem et lobortis placerat, sem massa molestie diam, ac lacinia risus lectus eget arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras sed suscipit velit.\n\nSed ullamcorper metus a ornare rhoncus. Nullam eu libero faucibus, gravida turpis sit amet, adipiscing odio. Nulla commodo blandit mauris, ut vulputate augue blandit non. Maecenas sem arcu, laoreet eu convallis ac, eleifend eget augue. Duis dolor lectus, consectetur ut eros eu, egestas congue erat. Duis hendrerit, sem in vehicula adipiscing, neque nisi ullamcorper libero, nec porta est lacus ornare metus. Fusce viverra, ipsum non iaculis rutrum, risus ante ullamcorper nisi, non cursus augue tellus in nulla. \n\nSed aliquam dui eu enim faucibus commodo. Sed non dolor eu orci accumsan dictum eu ut urna. Quisque dui mauris, vehicula ut felis condimentum, tincidunt varius magna. Donec sagittis lorem quis libero volutpat fermentum. Cras feugiat viverra porttitor. Etiam sagittis nunc in erat venenatis eleifend. Morbi gravida suscipit mi, id euismod orci lacinia ut. Nulla arcu dolor, dictum id dignissim at, iaculis mattis nisl.\n\nMorbi nec ultricies felis, lacinia pharetra magna. In consequat posuere interdum. Nunc lobortis eleifend libero eget blandit. Donec eget felis tempus dui lobortis fringilla. Nunc non rhoncus magna. Nulla facilisi. Quisque posuere luctus sapien, eget bibendum neque commodo at. Donec luctus turpis quam, molestie rhoncus dolor vehicula vehicula. Nullam faucibus urna sed arcu molestie, eget congue est gravida. \n\nSuspendisse lectus risus, dignissim in pretium in, pulvinar et massa. Mauris facilisis, nunc quis auctor dapibus, orci erat porttitor elit, eget interdum augue magna ornare urna. Suspendisse tempor nunc eu eros vehicula, non tempus turpis facilisis. Vestibulum commodo imperdiet erat congue porttitor. Nunc nisl lorem", "Phasellus tortor lectus", "Proin at faucibus odio. In tincidunt gravida. Phasellus tortor lectus, auctor a varius in, elementum sed magna.", "publish", "open", "open", "", "phasellus-tortor-lectus", "", "", "2013-03-04 15:05:05", "2013-03-04 15:05:05", "", "0", "http://3clicks.bringthepixel.com/?p=98", "0", "post", "", "0");
INSERT INTO `d1_posts` VALUES("100", "1", "2013-03-04 15:08:33", "2013-03-04 15:08:33", "\"Your last item approval was 6 months ago.\" Very funny, thank you for ruining my day!", "", "", "publish", "open", "open", "", "100", "", "", "2013-03-04 15:08:33", "2013-03-04 15:08:33", "", "0", "http://3clicks.bringthepixel.com/?p=100", "0", "post", "", "0");
INSERT INTO `d1_posts` VALUES("105", "1", "2013-03-04 15:14:47", "2013-03-04 15:14:47", "https://twitter.com/bringthepixel", "Finally you can find us on Twitter!", "", "publish", "open", "open", "", "finally-you-can-find-us-on-twitter", "", "", "2013-03-04 15:14:47", "2013-03-04 15:14:47", "", "0", "http://3clicks.bringthepixel.com/?p=105", "0", "post", "", "0");
INSERT INTO `d1_posts` VALUES("106", "1", "2013-03-04 15:18:02", "2013-03-04 15:18:02", "AMADEUS v1.0.1 - minor update is ready for <a href=\"http://themeforest.net/item/amadeus-classic-elegant-wp-theme/3722095?ref=\"bringthepixel\">download</a>.", "", "", "publish", "open", "open", "", "106", "", "", "2013-03-04 15:18:02", "2013-03-04 15:18:02", "", "0", "http://3clicks.bringthepixel.com/?p=106", "0", "post", "", "0");
INSERT INTO `d1_posts` VALUES("439", "1", "2013-05-02 12:56:06", "2013-05-02 12:56:06", "Cras aliquet cursus gravida. Etiam consectetur semper purus, eget feugiat felis blandit tristique. ", "Aside Post Format", "", "publish", "open", "open", "", "aside-post-format-post", "", "", "2013-05-02 12:56:06", "2013-05-02 12:56:06", "", "0", "http://3clicks.bringthepixel.com/?p=439", "0", "post", "", "0");
INSERT INTO `d1_posts` VALUES("587", "1", "2013-04-18 09:20:18", "2013-04-18 09:20:18", "Phasellus tortor lectus, auctor a varius in, elementum sed magna. Proin at faucibus odio. In tincidunt gravida nisl, ac viverra nibh condimentum vel. Nunc condimentum urna non quam rutrum commodo. Ut mattis, velit eu mollis luctus, nisi ipsum bibendum est, eget laoreet ipsum ipsum et quam. Integer mollis dictum orci, quis interdum diam mollis non. Fusce eu suscipit eros. Nullam metus nisi, gravida eget egestas eget, fringilla in lectus. Vestibulum sit amet dapibus sem, ut sodales arcu. \n\n<!--more-->\n\nNullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam. Donec mollis leo sed eros ullamcorper, in consequat magna volutpat. Nunc bibendum neque vitae felis feugiat fringilla et vitae nulla. Duis nisi neque, accumsan a diam ut, blandit faucibus urna.\n\nDuis mattis at elit eu ultricies. In a consequat leo, ut lacinia lorem. Praesent egestas neque vel sodales volutpat. Donec id eleifend diam. Nulla tincidunt velit sit amet ligula interdum sagittis. Mauris sollicitudin lorem vitae lacinia pretium. Cras id vehicula dolor, eget volutpat arcu. Curabitur sagittis neque quis metus malesuada iaculis. Sed sit amet luctus enim. Integer nec convallis mauris, in commodo urna. \n\n<blockquote>Morbi id blandit arcu. Nam vehicula turpis ligula, eget tincidunt nisi dapibus at. Cras ultrices, lorem et lobortis placerat, sem massa molestie diam, ac lacinia risus lectus eget arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras sed suscipit velit.</blockquote>\n\nSed ullamcorper metus a ornare rhoncus. Nullam eu libero faucibus, gravida turpis sit amet, adipiscing odio. Nulla commodo blandit mauris, ut vulputate augue blandit non. Maecenas sem arcu, laoreet eu convallis ac, eleifend eget augue. Duis dolor lectus, consectetur ut eros eu, egestas congue erat. Duis hendrerit, sem in vehicula adipiscing, neque nisi ullamcorper libero, nec porta est lacus ornare metus. Fusce viverra, ipsum non iaculis rutrum, risus ante ullamcorper nisi, non cursus augue tellus in nulla. \n\nSed aliquam dui eu enim faucibus commodo. Sed non dolor eu orci accumsan dictum eu ut urna. Quisque dui mauris, vehicula ut felis condimentum, tincidunt varius magna. Donec sagittis lorem quis libero volutpat fermentum. Cras feugiat viverra porttitor. Etiam sagittis nunc in erat venenatis eleifend. Morbi gravida suscipit mi, id euismod orci lacinia ut. Nulla arcu dolor, dictum id dignissim at, iaculis mattis nisl.\n\nMorbi nec ultricies felis, lacinia pharetra magna. In consequat posuere interdum. Nunc lobortis eleifend libero eget blandit. Donec eget felis tempus dui lobortis fringilla. Nunc non rhoncus magna. Nulla facilisi. Quisque posuere luctus sapien, eget bibendum neque commodo at. Donec luctus turpis quam, molestie rhoncus dolor vehicula vehicula. \n\nNullam faucibus urna sed arcu molestie, eget congue est gravida. Suspendisse lectus risus, dignissim in pretium in, pulvinar et massa. Mauris facilisis, nunc quis auctor dapibus, orci erat porttitor elit, eget interdum augue magna ornare urna. Suspendisse tempor nunc eu eros vehicula, non tempus turpis facilisis. Vestibulum commodo imperdiet erat congue porttitor. Nunc nisl lorem", "Left Sidebar", "Phasellus tortor lectus, auctor a varius in, elementum sed magna. Proin at faucibus odio. In tincidunt gravida ", "publish", "open", "open", "", "left-sidebar-post", "", "", "2013-04-18 09:20:18", "2013-04-18 09:20:18", "", "0", "http://3clicks.bringthepixel.com/?p=587", "0", "post", "", "0");
INSERT INTO `d1_posts` VALUES("588", "1", "2013-04-18 09:20:59", "2013-04-18 09:20:59", "Phasellus tortor lectus, auctor a varius in, elementum sed magna. Proin at faucibus odio. In tincidunt gravida nisl, ac viverra nibh condimentum vel. Nunc condimentum urna non quam rutrum commodo. Ut mattis, velit eu mollis luctus, nisi ipsum bibendum est, eget laoreet ipsum ipsum et quam. Integer mollis dictum orci, quis interdum diam mollis non. Fusce eu suscipit eros. Nullam metus nisi, gravida eget egestas eget, fringilla in lectus. \n\n<!--more-->\n\nVestibulum sit amet dapibus sem, ut sodales arcu. Nullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam. Donec mollis leo sed eros ullamcorper, in consequat magna volutpat. Nunc bibendum neque vitae felis feugiat fringilla et vitae nulla. Duis nisi neque, accumsan a diam ut, blandit faucibus urna.\n\nDuis mattis at elit eu ultricies. In a consequat leo, ut lacinia lorem. Praesent egestas neque vel sodales volutpat. Donec id eleifend diam. Nulla tincidunt velit sit amet ligula interdum sagittis. Mauris sollicitudin lorem vitae lacinia pretium. Cras id vehicula dolor, eget volutpat arcu. Curabitur sagittis neque quis metus malesuada iaculis. \n\nSed sit amet luctus enim. Integer nec convallis mauris, in commodo urna. Morbi id blandit arcu. Nam vehicula turpis ligula, eget tincidunt nisi dapibus at. Cras ultrices, lorem et lobortis placerat, sem massa molestie diam, ac lacinia risus lectus eget arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras sed suscipit velit.\n\nSed ullamcorper metus a ornare rhoncus. Nullam eu libero faucibus, gravida turpis sit amet, adipiscing odio. Nulla commodo blandit mauris, ut vulputate augue blandit non. Maecenas sem arcu, laoreet eu convallis ac, eleifend eget augue. Duis dolor lectus, consectetur ut eros eu, egestas congue erat. Duis hendrerit, sem in vehicula adipiscing, neque nisi ullamcorper libero, nec porta est lacus ornare metus. Fusce viverra, ipsum non iaculis rutrum, risus ante ullamcorper nisi, non cursus augue tellus in nulla. \n\nSed aliquam dui eu enim faucibus commodo. Sed non dolor eu orci accumsan dictum eu ut urna. Quisque dui mauris, vehicula ut felis condimentum, tincidunt varius magna. Donec sagittis lorem quis libero volutpat fermentum. Cras feugiat viverra porttitor. Etiam sagittis nunc in erat venenatis eleifend. Morbi gravida suscipit mi, id euismod orci lacinia ut. Nulla arcu dolor, dictum id dignissim at, iaculis mattis nisl.", "Right Sidebar", "Ac leo et varius. Maecenas enim leo, pharetra nec cursus eu, pellentesque eget sapien. Morbi pellentesque non nulla a scelerisque. Aenean dignissim", "publish", "open", "open", "", "right-sidebar-post", "", "", "2013-04-18 09:20:59", "2013-04-18 09:20:59", "", "0", "http://3clicks.bringthepixel.com/?p=588", "0", "post", "", "0");
INSERT INTO `d1_posts` VALUES("589", "1", "2013-04-18 09:21:32", "2013-04-18 09:21:32", "Nullam metus nisi, gravida eget egestas eget, fringilla in lectus. Vestibulum sit amet dapibus sem, ut sodales arcu. Nullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam. Donec mollis leo sed eros ullamcorper, in consequat magna volutpat. Nunc bibendum neque vitae felis feugiat fringilla et vitae nulla. Duis nisi neque, accumsan a diam ut, blandit faucibus urna.\n\n<!--more-->\n\nTiam vulputate turpis risus, lobortis varius lectus dictum eget. Phasellus tortor lectus, auctor a varius in, elementum sed magna. Proin at faucibus odio. In tincidunt gravida nisl, ac viverra nibh condimentum vel. Nunc condimentum urna non quam rutrum commodo. Ut mattis, velit eu mollis luctus, nisi ipsum bibendum est, eget laoreet ipsum ipsum et quam. Integer mollis dictum orci, quis interdum diam mollis non. Fusce eu suscipit eros.\n\nDuis mattis at elit eu ultricies. In a consequat leo, ut lacinia lorem. Praesent egestas neque vel sodales volutpat. Donec id eleifend diam. Nulla tincidunt velit sit amet ligula interdum sagittis. Mauris sollicitudin lorem vitae lacinia pretium. Cras id vehicula dolor, eget volutpat arcu. Curabitur sagittis neque quis metus malesuada iaculis. Sed sit amet luctus enim. Integer nec convallis mauris, in commodo urna. Morbi id blandit arcu. Nam vehicula turpis ligula, eget tincidunt nisi dapibus at. \n\nCras ultrices, lorem et lobortis placerat, sem massa molestie diam, ac lacinia risus lectus eget arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras sed suscipit velit.\n\nSed ullamcorper metus a ornare rhoncus. Nullam eu libero faucibus, gravida turpis sit amet, adipiscing odio. Nulla commodo blandit mauris, ut vulputate augue blandit non. Maecenas sem arcu, laoreet eu convallis ac, eleifend eget augue. Duis dolor lectus, consectetur ut eros eu, egestas congue erat. Duis hendrerit, sem in vehicula adipiscing, neque nisi ullamcorper libero, nec porta est lacus ornare metus. \n\nFusce viverra, ipsum non iaculis rutrum, risus ante ullamcorper nisi, non cursus augue tellus in nulla. Sed aliquam dui eu enim faucibus commodo. Sed non dolor eu orci accumsan dictum eu ut urna. Quisque dui mauris, vehicula ut felis condimentum, tincidunt varius magna. Donec sagittis lorem quis libero volutpat fermentum. Cras feugiat viverra porttitor. Etiam sagittis nunc in erat venenatis eleifend. Morbi gravida suscipit mi, id euismod orci lacinia ut. Nulla arcu dolor, dictum id dignissim at, iaculis mattis nisl.", "Full Width", "Dignissim ac leo et varius. Maecenas enim leo, pharetra nec cursus eu, pellentesque eget sapien. Morbi pellentesque non nulla a scelerisque. Aenean. ", "publish", "open", "open", "", "full-width-post", "", "", "2013-04-18 09:21:32", "2013-04-18 09:21:32", "", "0", "http://3clicks.bringthepixel.com/?p=589", "0", "post", "", "0");
INSERT INTO `d1_posts` VALUES("1153", "1", "2050-01-01 12:00:18", "2050-01-01 19:00:18", "This post is scheduled to be published in the future.\n\nIt should not be displayed by the theme.", "Scheduled", "", "future", "closed", "closed", "", "scheduled", "", "", "2050-01-01 12:00:18", "2050-01-01 19:00:18", "", "0", "http://wpthemetestdata.wordpress.com/?p=418", "0", "post", "", "0");
INSERT INTO `d1_posts` VALUES("1164", "1", "2013-04-09 11:20:39", "2013-04-09 18:20:39", "This post is drafted and not published yet.\n\nIt should not be displayed by the theme.", "Draft", "", "draft", "closed", "closed", "", "", "", "", "2013-04-09 11:20:39", "2013-04-09 18:20:39", "", "0", "http://wptest.io/demo/?p=922", "0", "post", "", "0");
INSERT INTO `d1_posts` VALUES("1241", "1", "2012-01-07 07:07:21", "2012-01-07 14:07:21", "Etiam vulputate turpis risus, lobortis varius lectus dictum eget. Phasellus tortor lectus, auctor a varius in, elementum sed magna. Proin at faucibus odio. In tincidunt gravida nisl, ac viverra nibh condimentum vel. Nunc condimentum urna non quam rutrum commodo. Ut mattis, velit eu mollis luctus, nisi ipsum bibendum est, eget laoreet ipsum ipsum et quam. Integer mollis dictum orci, quis interdum diam mollis non.\n\n<!--more-->\n\n<h2>Vestibulum sit amet dapibus sem</h2>\n\nUt sodales arcu. Nullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam. Donec mollis leo sed eros ullamcorper, in consequat magna volutpat. Nunc bibendum neque vitae felis feugiat fringilla et vitae nulla. Duis nisi neque, accumsan a diam ut, blandit faucibus urna.\n\nDuis mattis at elit eu ultricies. In a consequat leo, ut lacinia lorem. Praesent egestas neque vel sodales volutpat. Donec id eleifend diam. Nulla tincidunt velit sit amet ligula interdum sagittis. Mauris sollicitudin lorem vitae lacinia pretium. Cras id vehicula dolor, eget volutpat arcu. Curabitur sagittis neque quis metus malesuada iaculis. Sed sit amet luctus enim. Integer nec convallis mauris, in commodo urna. Morbi id blandit arcu. Nam vehicula turpis ligula, eget tincidunt nisi dapibus at. \n\n<blockquote>Cras ultrices, lorem et lobortis placerat, sem massa molestie diam, ac lacinia risus lectus eget arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras sed suscipit velit.</blockquote>\n\n<h2>Sed ullamcorper metus</h2>\n\nA ornare rhoncus. Nullam eu libero faucibus, gravida turpis sit amet, adipiscing odio. Nulla commodo blandit mauris, ut vulputate augue blandit non. Maecenas sem arcu, laoreet eu convallis ac, eleifend eget augue. Duis dolor lectus, consectetur ut eros eu, egestas congue erat. Duis hendrerit, sem in vehicula adipiscing, neque nisi ullamcorper libero, nec porta est lacus ornare metus. Fusce viverra, ipsum non iaculis rutrum, risus ante ullamcorper nisi, non cursus augue tellus in nulla. \n\n<h3>Sed aliquam dui eu enim faucibus commodo</h3>\n\nSed non dolor eu orci accumsan dictum eu ut urna. Quisque dui mauris, vehicula ut felis condimentum, tincidunt varius magna. Donec sagittis lorem quis libero volutpat fermentum. Cras feugiat viverra porttitor. Etiam sagittis nunc in erat venenatis eleifend. Morbi gravida suscipit mi, id euismod orci lacinia ut. Nulla arcu dolor, dictum id dignissim at, iaculis mattis nisl.", "Template: Sticky", "Aenean dignissim ac leo et varius. Maecenas enim leo, pharetra nec cursus eu, pellentesque eget sapien. Morbi pellentesque non nulla a scelerisque.", "publish", "open", "open", "", "template-sticky", "", "", "2012-01-07 07:07:21", "2012-01-07 14:07:21", "", "0", "http://wptest.io/demo/?p=1241", "0", "post", "", "3");
INSERT INTO `d1_posts` VALUES("17", "1", "2013-05-06 12:58:59", "2013-05-06 12:58:59", "Vulputate turpis risus, lobortis varius lectus dictum eget. Phasellus tortor lectus, auctor a varius in, elementum sed magna. Proin at faucibus odio. In tincidunt gravida nisl, ac viverra nibh ondimentum vel. Nunc condimentum urna non quam rutrum commodo. Ut mattis, velit eu mollis luctus, nisi ipsum bibendum est, eget laoreet ipsum ipsum et quam. Integer mollis dictum orci, quis interdum diam mollis non. Fusce eu suscipit eros. \n\n<!--more-->\n\nNullam metus nisi, gravida eget egestas eget, fringilla in lectus. Vestibulum sit amet dapibus sem, ut sodales arcu. Nullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam. Donec mollis leo sed eros ullamcorper, in consequat magna volutpat. Nunc bibendum neque vitae felis feugiat fringilla et vitae nulla. Duis nisi neque, accumsan a diam ut, blandit faucibus urna.\n\nDuis mattis at elit eu ultricies. In a consequat leo, ut lacinia lorem. Praesent egestas neque vel sodales volutpat. Donec id eleifend diam. Nulla tincidunt velit sit amet ligula interdum sagittis. Mauris sollicitudin lorem vitae lacinia pretium. Cras id vehicula dolor, eget volutpat arcu. Curabitur sagittis neque quis metus malesuada iaculis. Sed sit amet luctus enim. Integer nec convallis mauris, in commodo urna. Morbi id blandit arcu. Nam vehicula turpis ligula, eget tincidunt nisi dapibus at. Cras ultrices, lorem et lobortis placerat, sem massa molestie diam, ac lacinia risus lectus eget arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras sed suscipit velit.\n\n<blockquote>Sed ullamcorper metus a ornare rhoncus. Nullam eu libero faucibus, gravida turpis sit amet, adipiscing odio. Nulla commodo blandit mauris, ut vulputate augue blandit non. Maecenas sem arcu, laoreet eu convallis ac, eleifend eget augue. Duis dolor lectus, consectetur ut eros eu, egestas congue erat. Duis hendrerit, sem in vehicula adipiscing, neque nisi ullamcorper libero, nec porta est lacus ornare metus. Fusce viverra, ipsum non iaculis rutrum, risus ante ullamcorper nisi, non cursus augue tellus in nulla. </blockquote>\n\nSed aliquam dui eu enim faucibus commodo. Sed non dolor eu orci accumsan dictum eu ut urna. Quisque dui mauris, vehicula ut felis condimentum, tincidunt varius magna. Donec sagittis lorem quis libero volutpat fermentum. Cras feugiat viverra porttitor. Etiam sagittis nunc in erat venenatis eleifend. Morbi gravida suscipit mi, id euismod orci lacinia ut. Nulla arcu dolor, dictum id dignissim at, iaculis mattis nisl. is the mysterious. It is the source of all true art and science.", "Vulputate turpis risus", "Aenean.Ignissim ac leo et varius. Maecenas enim leo, pharetra nec cursus eu. Pellentesque eget sapien. Morbi pellentesque non nulla a scelerisque.", "publish", "open", "open", "", "vulputate-turpis-risus", "", "", "2013-05-06 12:58:59", "2013-05-06 12:58:59", "", "0", "http://3clicks.bringthepixel.com/?p=17", "0", "post", "", "1");
INSERT INTO `d1_posts` VALUES("101", "1", "2013-05-04 15:10:38", "2013-05-04 15:10:38", "http://themeforest.net/item/amadeus-classic-elegant-wp-theme/3722095?ref=bringthepixel", "Link Post Format", "", "publish", "open", "open", "", "link-post-format-post", "", "", "2013-05-04 15:10:38", "2013-05-04 15:10:38", "", "0", "http://3clicks.bringthepixel.com/?p=101", "0", "post", "", "0");
INSERT INTO `d1_posts` VALUES("441", "1", "2013-05-09 23:57:29", "2013-05-09 23:57:29", "Etiam vulputate turpis risus, lobortis varius lectus dictum eget. Phasellus tortor lectus, auctor a varius in, elementum sed magna. Proin at faucibus odio. In tincidunt gravida nisl, ac viverra nibh condimentum vel. Nunc condimentum urna non quam rutrum commodo. Ut mattis, velit eu mollis luctus, nisi ipsum bibendum est, eget laoreet ipsum ipsum et quam. Integer mollis dictum orci, quis interdum diam mollis non. Fusce eu suscipit eros. Nullam metus nisi. \n\n<!--more-->\n\nGravida eget egestas eget, fringilla in lectus. Vestibulum sit amet dapibus sem, ut sodales arcu. Nullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam. Donec mollis leo sed eros ullamcorper, in consequat magna volutpat. Nunc bibendum neque vitae felis feugiat fringilla et vitae nulla. Duis nisi neque, accumsan a diam ut, blandit faucibus urna.\n\nDuis mattis at elit eu ultricies. In a consequat leo, ut lacinia lorem. Praesent egestas neque vel sodales volutpat. Donec id eleifend diam. Nulla tincidunt velit sit amet ligula interdum sagittis. Mauris sollicitudin lorem vitae lacinia pretium. Cras id vehicula dolor, eget volutpat arcu. Curabitur sagittis neque quis metus malesuada iaculis. \n\nSed sit amet luctus enim. Integer nec convallis mauris, in commodo urna. Morbi id blandit arcu. Nam vehicula turpis ligula, eget tincidunt nisi dapibus at. Cras ultrices, lorem et lobortis placerat, sem massa molestie diam, ac lacinia risus lectus eget arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras sed suscipit velit.", "Audio Post Format", "Ignissim ac leo et varius. Maecenas enim leo, pharetra nec cursus eu, pellentesque eget sapien. Morbi pellentesque non nulla a scelerisque. Aenean.", "publish", "open", "open", "", "audio-post-format-post", "", "", "2013-05-09 23:57:29", "2013-05-09 23:57:29", "", "0", "http://3clicks.bringthepixel.com/?p=441", "0", "post", "", "0");
INSERT INTO `d1_posts` VALUES("442", "1", "2013-05-07 12:57:48", "2013-05-07 12:57:48", "Curabitur id orci eget leo venenatis pretium. Integer eleifend sem in leo posuere ac bibendum eros tincidunt. Proin feugiat tristique sapien nec tempus. Etiam consequat convallis mollis. Curabitur at tortor nisl, sed dignissim nisi. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed vitae mattis nisi. Cras a enim ante. Praesent elementum, sem eu sagittis vulputate, augue felis mattis orci, ut molestie dui metus in sapien. Suspendisse eros turpis, pulvinar at vulputate vitae, aliquam vel nulla. Fusce iaculis viverra leo, nec semper erat sollicitudin blandit. Praesent sit amet massa nisi, mattis bibendum lectus.\n\n<!--more-->\n\nProin sapien ante, rhoncus in vehicula in, pretium ac elit. Vestibulum varius orci nec neque fermentum et malesuada urna vulputate. Duis ut lorem purus, quis vehicula lectus. Nullam vel sollicitudin ligula. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque nec odio sapien, ultricies fringilla elit. Etiam dolor ante, consequat at convallis non, pretium eget lorem. Morbi sodales molestie dolor in aliquam. Suspendisse imperdiet ullamcorper quam a accumsan. Suspendisse scelerisque leo urna. Proin sit amet magna tortor. Maecenas non sapien libero, sed aliquet orci. Sed sed cursus diam. In volutpat mollis leo, nec bibendum ante lacinia at. Nam enim justo, fermentum ultrices facilisis eu, tempor sit amet ipsum.\n\ntiam vulputate turpis risus, lobortis varius lectus dictum eget. Phasellus tortor lectus, auctor a varius in, elementum sed magna. Proin at faucibus odio. In tincidunt gravida nisl, ac viverra nibh condimentum vel. Nunc condimentum urna non quam rutrum commodo. Ut mattis, velit eu mollis luctus, nisi ipsum bibendum est, eget laoreet ipsum ipsum et quam. Integer mollis dictum orci, quis interdum diam mollis non. Fusce eu suscipit eros. Nullam metus nisi, gravida eget egestas eget, fringilla in lectus. Vestibulum sit amet dapibus sem, ut sodales arcu. Nullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam. Donec mollis leo sed eros ullamcorper, in consequat magna volutpat. Nunc bibendum neque vitae felis feugiat fringilla et vitae nulla. Duis nisi neque, accumsan a diam ut, blandit faucibus urna.\n\nDuis mattis at elit eu ultricies. In a consequat leo, ut lacinia lorem. Praesent egestas neque vel sodales volutpat. Donec id eleifend diam. Nulla tincidunt velit sit amet ligula interdum sagittis. Mauris sollicitudin lorem vitae lacinia pretium. Cras id vehicula dolor, eget volutpat arcu. Curabitur sagittis neque quis metus malesuada iaculis. Sed sit amet luctus enim. Integer nec convallis mauris, in commodo urna. Morbi id blandit arcu. Nam vehicula turpis ligula, eget tincidunt nisi dapibus at. Cras ultrices, lorem et lobortis placerat, sem massa molestie diam, ac lacinia risus lectus eget arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras sed suscipit velit.\n\nSed ullamcorper metus a ornare rhoncus. Nullam eu libero faucibus, gravida turpis sit amet, adipiscing odio. Nulla commodo blandit mauris, ut vulputate augue blandit non. Maecenas sem arcu, laoreet eu convallis ac, eleifend eget augue. Duis dolor lectus, consectetur ut eros eu, egestas congue erat. Duis hendrerit, sem in vehicula adipiscing, neque nisi ullamcorper libero, nec porta est lacus ornare metus. Fusce viverra, ipsum non iaculis rutrum, risus ante ullamcorper nisi, non cursus augue tellus in nulla. \n\nSed aliquam dui eu enim faucibus commodo. Sed non dolor eu orci accumsan dictum eu ut urna. Quisque dui mauris, vehicula ut felis condimentum, tincidunt varius magna. Donec sagittis lorem quis libero volutpat fermentum. Cras feugiat viverra porttitor. Etiam sagittis nunc in erat venenatis eleifend. Morbi gravida suscipit mi, id euismod orci lacinia ut. Nulla arcu dolor, dictum id dignissim at, iaculis mattis nisl.\n\n<strong>Attributions (video):</strong>\n(c) copyright 2008, Blender Foundation / <a href=\"www.bigbuckbunny.org\">www.bigbuckbunny.org</a>", "Video Post Format", "Morbi pellentesque non nulla a scelerisque.  Aenean.Ignissim ac leo et varius. Maecenas enim leo, pharetra nec cursus eu. Pellentesque eget sapien.", "publish", "open", "open", "", "video-post-format-post", "", "", "2013-05-07 12:57:48", "2013-05-07 12:57:48", "", "0", "http://3clicks.bringthepixel.com/?p=442", "0", "post", "", "1");
INSERT INTO `d1_posts` VALUES("443", "1", "2013-05-09 12:58:04", "2013-05-09 12:58:04", "Vulputate turpis risus, lobortis varius lectus dictum eget. Phasellus tortor lectus, auctor a varius in, elementum sed magna. Proin at faucibus odio. In tincidunt gravida nisl, ac viverra nibh condimentum vel. Nunc condimentum urna non quam rutrum commodo. Ut mattis, velit eu mollis luctus, nisi ipsum bibendum est, eget laoreet ipsum ipsum et quam. Integer mollis dictum orci, quis interdum diam mollis non. Fusce eu suscipit eros. \n\n<!--more-->\n\nNullam metus nisi, gravida eget egestas eget, fringilla in lectus. Vestibulum sit amet dapibus sem, ut sodales arcu. Nullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam. Donec mollis leo sed eros ullamcorper, in consequat magna volutpat. Nunc bibendum neque vitae felis feugiat fringilla et vitae nulla. Duis nisi neque, accumsan a diam ut, blandit faucibus urna.\n\n<blockquote>Duis mattis at elit eu ultricies. In a consequat leo, ut lacinia lorem. Praesent egestas neque vel sodales volutpat. Donec id eleifend diam. Nulla tincidunt velit sit amet ligula interdum sagittis. Mauris sollicitudin lorem vitae lacinia pretium. Cras id vehicula dolor, eget volutpat arcu. Curabitur sagittis neque quis metus malesuada iaculis. Sed sit amet luctus enim. Integer nec convallis mauris, in commodo urna. Morbi id blandit arcu. Nam vehicula turpis ligula, eget tincidunt nisi dapibus at. Cras ultrices, lorem et lobortis placerat, sem massa molestie diam, ac lacinia risus lectus eget arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras sed suscipit velit.\n</blockquote>\n\nSed ullamcorper metus a ornare rhoncus. Nullam eu libero faucibus, gravida turpis sit amet, adipiscing odio. Nulla commodo blandit mauris, ut vulputate augue blandit non. Maecenas sem arcu, laoreet eu convallis ac, eleifend eget augue. Duis dolor lectus, consectetur ut eros eu, egestas congue erat. Duis hendrerit, sem in vehicula adipiscing, neque nisi ullamcorper libero, nec porta est lacus ornare metus. Fusce viverra, ipsum non iaculis rutrum, risus ante ullamcorper nisi, non cursus augue tellus in nulla. \n\nSed aliquam dui eu enim faucibus commodo. Sed non dolor eu orci accumsan dictum eu ut urna. Quisque dui mauris, vehicula ut felis condimentum, tincidunt varius magna. Donec sagittis lorem quis libero volutpat fermentum. Cras feugiat viverra porttitor. Etiam sagittis nunc in erat venenatis eleifend. Morbi gravida suscipit mi, id euismod orci lacinia ut. Nulla arcu dolor, dictum id dignissim at, iaculis mattis nisl.", "Image Post Format", "Maecenas enim leo, pharetra nec cursus eu, pellentesque eget sapien. Morbi pellentesque non nulla a scelerisque.  Aenean.Ignissim ac leo et varius. ", "publish", "open", "open", "", "image-post-format-post", "", "", "2013-05-09 12:58:04", "2013-05-09 12:58:04", "", "0", "http://3clicks.bringthepixel.com/?p=443", "0", "post", "", "4");
INSERT INTO `d1_posts` VALUES("444", "1", "2013-05-08 12:58:24", "2013-05-08 12:58:24", "tiam vulputate turpis risus, lobortis varius lectus dictum eget. Phasellus tortor lectus, auctor a varius in, elementum sed magna. Proin at faucibus odio. In tincidunt gravida nisl, ac viverra nibh condimentum vel. Nunc condimentum urna non quam rutrum commodo. Ut mattis, velit eu mollis luctus, nisi ipsum bibendum est, eget laoreet ipsum ipsum et quam. Integer mollis dictum orci, quis interdum diam mollis non. Fusce eu suscipit eros. \n\n<!--more-->\n\nNullam metus nisi, gravida eget egestas eget, fringilla in lectus. Vestibulum sit amet dapibus sem, ut sodales arcu. Nullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam. Donec mollis leo sed eros ullamcorper, in consequat magna volutpat. Nunc bibendum neque vitae felis feugiat fringilla et vitae nulla. Duis nisi neque, accumsan a diam ut, blandit faucibus urna.\n\nDuis mattis at elit eu ultricies. In a consequat leo, ut lacinia lorem. Praesent egestas neque vel sodales volutpat. Donec id eleifend diam. Nulla tincidunt velit sit amet ligula interdum sagittis. Mauris sollicitudin lorem vitae lacinia pretium. Cras id vehicula dolor, eget volutpat arcu. Curabitur sagittis neque quis metus malesuada iaculis. Sed sit amet luctus enim. Integer nec convallis mauris, in commodo urna. Morbi id blandit arcu. \n\nNam vehicula turpis ligula, eget tincidunt nisi dapibus at. Cras ultrices, lorem et lobortis placerat, sem massa molestie diam, ac lacinia risus lectus eget arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras sed suscipit velit.\n\nSed ullamcorper metus a ornare rhoncus. Nullam eu libero faucibus, gravida turpis sit amet, adipiscing odio. Nulla commodo blandit mauris, ut vulputate augue blandit non. Maecenas sem arcu, laoreet eu convallis ac, eleifend eget augue. Duis dolor lectus, consectetur ut eros eu, egestas congue erat. Duis hendrerit, sem in vehicula adipiscing, neque nisi ullamcorper libero, nec porta est lacus ornare metus. Fusce viverra, ipsum non iaculis rutrum, risus ante ullamcorper nisi, non cursus augue tellus in nulla. \n\nSed aliquam dui eu enim faucibus commodo. Sed non dolor eu orci accumsan dictum eu ut urna. Quisque dui mauris, vehicula ut felis condimentum, tincidunt varius magna. Donec sagittis lorem quis libero volutpat fermentum. Cras feugiat viverra porttitor. Etiam sagittis nunc in erat venenatis eleifend. Morbi gravida suscipit mi, id euismod orci lacinia ut. Nulla arcu dolor, dictum id dignissim at, iaculis mattis nisl.\n\n<strong>Attributions</strong>\nÃƒâ€šÃ‚Â© copyright Blender Foundation | <a href=\"www.sintel.org\">www.sintel.org</a>", "Gallery Post Format", "Pellentesque eget sapien. Morbi pellentesque non nulla a scelerisque.  Aenean.Ignissim ac leo et varius. Maecenas enim leo, pharetra nec cursus eu, ", "publish", "open", "open", "", "gallery-post-format-post", "", "", "2013-05-08 12:58:24", "2013-05-08 12:58:24", "", "0", "http://3clicks.bringthepixel.com/?p=444", "0", "post", "", "0");
INSERT INTO `d1_posts` VALUES("450", "1", "2013-05-10 13:00:08", "2013-05-10 13:00:08", "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque vitae elit mauris, ut dapibus elit. Nullam facilisis pharetra eros at sodales. Morbi imperdiet ligula quis tellus dignissim pretium. Nulla magna sem, dignissim egestas hendrerit ut, mollis eget risus. Aenean sit amet tincidunt diam. Ut condimentum placerat vehicula. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. \n\n<!--more-->\n\nAliquam pharetra molestie lacus, pretium posuere purus aliquet id. Integer non viverra purus. Duis ac aliquam sapien. Vivamus posuere erat ut velit accumsan ut ultrices tortor adipiscing. Maecenas imperdiet euismod elit.\n\nPellentesque quis justo dui, non iaculis felis. Nullam eget nibh ligula, ac fringilla odio. Nulla sit amet erat quam. Quisque metus mauris, commodo vitae consectetur vitae, feugiat at magna. Nulla elementum mauris ut eros dictum facilisis. Quisque ligula tortor, egestas at convallis nec, lacinia quis quam. Nunc et sodales nulla.\n\n<blockquote>Etiam vulputate turpis risus, lobortis varius lectus dictum eget. Phasellus tortor lectus, auctor a varius in, elementum sed magna. Proin at faucibus odio. In tincidunt gravida nisl, ac viverra nibh condimentum vel. Nunc condimentum urna non quam rutrum commodo. Ut mattis, velit eu mollis luctus, nisi ipsum bibendum est, eget laoreet ipsum ipsum et quam. Integer mollis dictum orci, quis interdum diam mollis non. Fusce eu suscipit eros. \n</blockquote>\n\n<h2>Nullam metus nisi</h2>\n\nGravida eget egestas eget, fringilla in lectus. Vestibulum sit amet dapibus sem, ut sodales arcu. Nullam vel nibh id dolor tristique viverra. Aliquam blandit sapien massa. Aenean non facilisis quam. Donec mollis leo sed eros ullamcorper, in consequat magna volutpat. Nunc bibendum neque vitae felis feugiat fringilla et vitae nulla. Duis nisi neque, accumsan a diam ut, blandit faucibus urna.\n\nDuis mattis at elit eu ultricies. In a consequat leo, ut lacinia lorem. Praesent egestas neque vel sodales volutpat. Donec id eleifend diam. Nulla tincidunt velit sit amet ligula interdum sagittis. Mauris sollicitudin lorem vitae lacinia pretium. Cras id vehicula dolor, eget volutpat arcu. Curabitur sagittis neque quis metus malesuada iaculis. \n\n<h3>Sed sit amet luctus enim</h3>\n\nInteger nec convallis mauris, in commodo urna. Morbi id blandit arcu. Nam vehicula turpis ligula, eget tincidunt nisi dapibus at. Cras ultrices, lorem et lobortis placerat, sem massa molestie diam, ac lacinia risus lectus eget arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras sed suscipit velit.", "Standard Post Format", "Facilisis aliquet ligula egestas. Mauris tempus quam eget dui consectetur sit amet dapibus ipsum tincidunt hendrerit .", "publish", "open", "open", "", "standard-post-format-post", "", "", "2013-05-10 13:00:08", "2013-05-10 13:00:08", "", "0", "http://3clicks.bringthepixel.com/?p=450", "0", "post", "", "5");
INSERT INTO `d1_posts` VALUES("1867", "1", "2013-06-16 14:41:23", "2013-06-16 14:41:23", "Pellentesque mollis erat et elit porta, ut venenatis augue dignissim. Maecenas nec tortor ante. Morbi purus leo, pellentesque non molestie sit amet, vehicula quis orci. Pellentesque ac scelerisque elit, sed auctor turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean dignissim ac leo et varius. Maecenas enim leo, pharetra nec cursus eu, pellentesque eget sapien. Morbi pellentesque non nulla a scelerisque. Phasellus porttitor sit amet nisi nec varius. Nam vitae laoreet ligula. Integer vel sollicitudin nulla, ac auctor massa.", "Overview on Left", "Aenean dignissim ac leo et varius. Maecenas enim leo, pharetra nec cursus eu, pellentesque eget sapien. Morbi pellentesque non nulla a scelerisque.", "publish", "open", "open", "", "overview-on-left-post", "", "", "2013-06-16 14:41:23", "2013-06-16 14:41:23", "", "0", "http://3clicks.bringthepixel.com/?p=1867", "0", "post", "", "2");
INSERT INTO `d1_posts` VALUES("1868", "1", "2013-06-16 14:41:59", "2013-06-16 14:41:59", "Pellentesque mollis erat et elit porta, ut venenatis augue dignissim. Maecenas nec tortor ante. Morbi purus leo, pellentesque non molestie sit amet, vehicula quis orci. Pellentesque ac scelerisque elit, sed auctor turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean dignissim ac leo et varius.", "Overview on Right", "Aenean dignissim ac leo et varius. Maecenas enim leo, pharetra nec cursus eu, pellentesque eget sapien. Morbi pellentesque non nulla a scelerisque.", "publish", "open", "open", "", "overview-on-right-post", "", "", "2013-06-16 14:41:59", "2013-06-16 14:41:59", "", "0", "http://3clicks.bringthepixel.com/?p=1868", "0", "post", "", "4");
INSERT INTO `d1_posts` VALUES("2013", "1", "2013-07-01 14:39:09", "2013-07-01 14:39:09", "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam a porta nulla. Etiam lectus enim, gravida at erat ut, blandit dignissim leo. Vestibulum vel odio a purus.", "Quote Post Format", "", "publish", "open", "open", "", "quote-post-format-post-2", "", "", "2013-07-01 14:39:09", "2013-07-01 14:39:09", "", "0", "http://3clicks.bringthepixel.com/?p=2013", "0", "post", "", "0");
INSERT INTO `d1_posts` VALUES("2053", "1", "2014-08-21 18:13:25", "2014-08-21 18:13:25", " ", "", "", "publish", "open", "open", "", "2053", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2053", "1", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2065", "1", "2014-08-21 18:13:26", "2014-08-21 18:13:26", "Home Example #1", "Revolution Slider", "", "publish", "open", "open", "", "revolution-slider", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2065", "2", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2185", "1", "2014-08-21 18:22:50", "2014-08-21 18:22:50", "", "About us", "", "publish", "open", "open", "", "about-us-3", "", "", "2014-08-21 18:23:20", "2014-08-21 18:23:20", "", "0", "http://hrd.softons.cu.cc/?p=2185", "2", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2106", "1", "2014-08-21 18:14:08", "2014-08-21 18:14:08", "", "info@softons.com", "", "publish", "open", "open", "", "bringthepixelgmail-com-2", "", "", "2014-08-21 19:00:05", "2014-08-21 19:00:05", "", "0", "http://hrd.softons.cu.cc/?p=2106", "1", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2107", "1", "2014-08-21 18:14:08", "2014-08-21 18:14:08", " ", "", "", "publish", "open", "open", "", "2107", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2107", "17", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2108", "1", "2014-08-21 18:14:08", "2014-08-21 18:14:08", " ", "", "", "publish", "open", "open", "", "2108", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2108", "18", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2109", "1", "2014-08-21 18:14:08", "2014-08-21 18:14:08", " ", "", "", "publish", "open", "open", "", "2109", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2109", "19", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2112", "1", "2014-08-21 18:14:08", "2014-08-21 18:14:08", "", "Video Post Format", "", "publish", "open", "open", "", "video-post-format-2", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2112", "25", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2113", "1", "2014-08-21 18:14:08", "2014-08-21 18:14:08", " ", "", "", "publish", "open", "open", "", "2113", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2113", "26", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2114", "1", "2014-08-21 18:14:08", "2014-08-21 18:14:08", "", "Image Post Format", "", "publish", "open", "open", "", "image-post-format-2", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2114", "23", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2115", "1", "2014-08-21 18:14:08", "2014-08-21 18:14:08", " ", "", "", "publish", "open", "open", "", "2115", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2115", "20", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2116", "1", "2014-08-21 18:14:08", "2014-08-21 18:14:08", " ", "", "", "publish", "open", "open", "", "2116", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2116", "21", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2117", "1", "2014-08-21 18:14:08", "2014-08-21 18:14:08", "", "Gallery", "", "publish", "open", "open", "", "gallery-3", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2117", "30", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2118", "1", "2014-08-21 18:14:08", "2014-08-21 18:14:08", "", "Full Width", "", "publish", "open", "open", "", "full-width-3", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2118", "29", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2119", "1", "2014-08-21 18:14:08", "2014-08-21 18:14:08", "", "3 Columns", "", "publish", "open", "open", "", "3-columns-3", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2119", "34", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2120", "1", "2014-08-21 18:14:09", "2014-08-21 18:14:09", "", "Masonry", "", "publish", "open", "open", "", "masonry-3", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2120", "31", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2121", "1", "2014-08-21 18:14:09", "2014-08-21 18:14:09", "", "Filterable Gallery", "", "publish", "open", "open", "", "filterable-gallery-3", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2121", "32", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2122", "1", "2014-08-21 18:14:09", "2014-08-21 18:14:09", "", "2 Columns", "", "publish", "open", "open", "", "2-columns-3", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2122", "33", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2123", "1", "2014-08-21 18:14:09", "2014-08-21 18:14:09", "", "4 Columns", "", "publish", "open", "open", "", "4-columns-3", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2123", "35", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2124", "1", "2014-08-21 18:14:09", "2014-08-21 18:14:09", "", "Standard", "", "publish", "open", "open", "", "standard-2", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2124", "28", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2125", "1", "2014-08-21 18:14:09", "2014-08-21 18:14:09", "", "Masonry", "", "publish", "open", "open", "", "masonry-4", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2125", "10", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2126", "1", "2014-08-21 18:14:09", "2014-08-21 18:14:09", "", "Gallery", "", "publish", "open", "open", "", "gallery-4", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2126", "11", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2127", "1", "2014-08-21 18:14:09", "2014-08-21 18:14:09", "", "Full Width", "", "publish", "open", "open", "", "full-width-4", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2127", "12", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2128", "1", "2014-08-21 18:14:09", "2014-08-21 18:14:09", "", "3 Columns", "", "publish", "open", "open", "", "3-columns-4", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2128", "14", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2129", "1", "2014-08-21 18:14:09", "2014-08-21 18:14:09", "", "Filterable Gallery", "", "publish", "open", "open", "", "filterable-gallery-4", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2129", "9", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2130", "1", "2014-08-21 18:14:09", "2014-08-21 18:14:09", "", "2 Columns", "", "publish", "open", "open", "", "2-columns-4", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2130", "13", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2131", "1", "2014-08-21 18:14:09", "2014-08-21 18:14:09", "", "4 Columns", "", "publish", "open", "open", "", "4-columns-4", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2131", "15", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2148", "1", "2014-08-21 18:14:10", "2014-08-21 18:14:10", " ", "", "", "publish", "open", "open", "", "2148", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2148", "43", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2149", "1", "2014-08-21 18:14:10", "2014-08-21 18:14:10", " ", "", "", "publish", "open", "open", "", "2149", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2149", "45", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2150", "1", "2014-08-21 18:14:10", "2014-08-21 18:14:10", " ", "", "", "publish", "open", "open", "", "2150", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2150", "46", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2151", "1", "2014-08-21 18:14:10", "2014-08-21 18:14:10", " ", "", "", "publish", "open", "open", "", "2151", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2151", "50", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2152", "1", "2014-08-21 18:14:10", "2014-08-21 18:14:10", " ", "", "", "publish", "open", "open", "", "2152", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2152", "44", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2153", "1", "2014-08-21 18:14:10", "2014-08-21 18:14:10", " ", "", "", "publish", "open", "open", "", "2153", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2153", "47", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2154", "1", "2014-08-21 18:14:10", "2014-08-21 18:14:10", " ", "", "", "publish", "open", "open", "", "2154", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2154", "49", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2189", "1", "2014-08-21 18:42:27", "2014-08-21 18:42:27", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<h2>[icon icon=\"th-large\" size=\"small\" style=\"solid\"][/icon] MetroStyle Menus</h2>\r\nWe offer a huge variety of custom menu styles but to be honest the MetroStyle is our favourite. You\'ll love it too.\r\n\r\n<a href=\"/customize/menu-layouts/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<h2>[icon icon=\"magic\" size=\"small\" style=\"solid\"][/icon] Design Audits</h2>\r\nWhen your site is ready, stop for a while and ask our designer what can be improved. What\'s more, it\'s a totally <strong>FREE</strong> service!\r\n\r\n<a href=\"/metromenu/design-audits/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n<h2>[icon icon=\"gift\" size=\"small\" style=\"solid\"][/icon] Brand New Sliders</h2>\r\nBesides the awesome Revolution Slider, the 3Clicks Theme includes some new and unconventional sliders.\r\n\r\n<a href=\"/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n<h2 class=\"g1-h1\" style=\"text-align: center;\"><a href=\"/shortcodes/misc/full-width-sections/\">3Clicks v2 - Now With Full Width Sections</a></h2>\r\n<div></div>\r\n<h3 style=\"text-align: center;\">Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin facilisis commodo sapien, ut accumsan pellentesque arcu auctor nec</h3>\r\n[space]\r\n\r\n[/space]\r\n<div><img style=\"display: block;\" src=\"/wp-content/uploads/2013/09/home_section_visual_1.jpg\" alt=\"Section Visual\" width=\"968\" height=\"380\" /></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<h2>Awesome Shortcodes</h2>\r\n[duplicator icon=\"gift\" start=\"0\" stop=\"22\" max=\"25\" direction=\"right\" style=\"simple\"]\r\n\r\n[/duplicator]\r\n\r\nDuplicators, Animated Numbers, Progress Bars &amp; Circles, Before &amp; After. <a href=\"/shortcodes/\">See The Full List</a>\r\n\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<h2>Some Facts</h2>\r\n[list type=\"icon\" style=\"simple\" icon=\"chevron-right\"]\r\n<ul>\r\n	<li>100% Responsive &amp; Retina Ready</li>\r\n	<li>SEO Optimized with Microdata Support</li>\r\n	<li>Smart Shortcodes with Shortcode Generator</li>\r\n	<li>Unlimited Colors &amp; Custom Backgrounds</li>\r\n	<li>Video Tutorials and Documentation</li>\r\n	<li>Easy to Use Theme Options Panel</li>\r\n</ul>\r\n[/list]\r\n\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n<h2>What Clients Say</h2>\r\n[carousel coin_nav=\"none\" direction_nav=\"none\" autoplay=\"standard\"]\r\n\r\n[carousel_item]\r\n\r\n[quote author_name=\"George Novitzky\" author_description=\"Some Company\" author_image=\"/wp-content/uploads/2013/06/quote_author_image_1_v01.jpg\" size=\"small\" style=\"solid\"]\r\n\r\nAuctor sit amet feugiat eu &amp; viverra ac felis. Nullam gravida neque quis augue vestibulum euismod. Suspendisse risus tortor, varius ac malesuada in, mattis vitae mauris.\r\n\r\n[/quote]\r\n\r\n[/carousel_item]\r\n\r\n[carousel_item]\r\n\r\n[quote author_name=\"John Doe\" size=\"small\" style=\"solid\"]\r\n\r\nNullam gravida neque quis augue vestibulum euismod. Suspendisse risus tortor, varius ac malesuada in, mattis vitae mauris. Auctor sit amet feugiat eu &amp; viverra ac felis.\r\n\r\n[/quote]\r\n\r\n[/carousel_item]\r\n\r\n[/carousel]\r\n\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#333333\" background_image=\"/wp-content/uploads/2013/06/revslider_big_1_v01.jpg\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<h2 style=\"color: #ffffff;\">Recent Works</h2>\r\n[recent_works template=\"one-third-gallery\" effect=\"grayscale\" hide=\"summary,categories,tags\" max=\"6\"]\r\n\r\n[/recent_works]\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[box style=\"simple\"]\r\n\r\n[two_third valign=\"middle\"]\r\n<h2>You Will Love 3Clicks As Much As We Do</h2>\r\n<h3 class=\"g1-h4\">Ullamcorper mi viverra quis. Sed nec suscipit felis.</h3>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\"]\r\n\r\n[button style=\"solid\" size=\"big\" type=\"wide\"]Get Started with 3Clicks[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/box]\r\n\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Our Happy Clients</h2>\r\n[one_fifth valign=\"top\" animation=\"none\"]\r\n\r\n<img src=\"/wp-content/uploads/2013/06/brand_logo_1_v01.png\" alt=\"Brand Logo 1\" width=\"171\" height=\"77\" />\r\n\r\n[/one_fifth]\r\n\r\n[one_fifth valign=\"top\" animation=\"none\"]\r\n\r\n<img src=\"/wp-content/uploads/2013/06/brand_logo_2_v01.png\" alt=\"Brand Logo 2\" width=\"171\" height=\"77\" />\r\n\r\n[/one_fifth]\r\n\r\n[one_fifth valign=\"top\" animation=\"none\"]\r\n\r\n<img src=\"/wp-content/uploads/2013/06/brand_logo_3_v01.png\" alt=\"Brand Logo 3\" width=\"171\" height=\"77\" />\r\n\r\n[/one_fifth]\r\n\r\n[one_fifth valign=\"top\" animation=\"none\"]\r\n\r\n<img src=\"/wp-content/uploads/2013/06/brand_logo_4_v01.png\" alt=\"Brand Logo 4\" width=\"171\" height=\"77\" />\r\n\r\n[/one_fifth]\r\n\r\n[one_fifth_last valign=\"top\" animation=\"none\"]\r\n\r\n<img src=\"/wp-content/uploads/2013/06/brand_logo_5_v01.png\" alt=\"Brand Logo 5\" width=\"171\" height=\"77\" />\r\n\r\n[/one_fifth_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-08-21 18:42:27", "2014-08-21 18:42:27", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2157", "1", "2014-08-21 18:14:10", "2014-08-21 18:14:10", " ", "", "", "publish", "open", "open", "", "2157", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2157", "39", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2158", "1", "2014-08-21 18:14:10", "2014-08-21 18:14:10", " ", "", "", "publish", "open", "open", "", "2158", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2158", "41", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2159", "1", "2014-08-21 18:14:10", "2014-08-21 18:14:10", " ", "", "", "publish", "open", "open", "", "2159", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2159", "40", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2187", "1", "2014-08-21 18:42:17", "2014-08-21 18:42:17", "[precontent]\r\n\r\n[two_third valign=\"middle\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section]\r\n\r\n[one_third]\r\n<h2>[icon icon=\"th-large\" size=\"small\" style=\"solid\"] MetroStyle Menus</h2>\r\nWe offer a huge variety of custom menu styles but to be honest the MetroStyle is our favourite. You\'ll love it too.\r\n\r\n<a href=\"/customize/menu-layouts/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third]\r\n<h2>[icon icon=\"magic\" size=\"small\" style=\"solid\"] Design Audits</h2>\r\nWhen your site is ready, stop for a while and ask our designer what can be improved. What\'s more, it\'s a totally <strong>FREE</strong> service!\r\n\r\n<a href=\"/metromenu/design-audits/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third_last]\r\n<h2>[icon icon=\"gift\" size=\"small\" style=\"solid\"] Brand New Sliders</h2>\r\nBesides the awesome Revolution Slider, the 3Clicks Theme includes some new and unconventional sliders.\r\n\r\n<a href=\"/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section border_size=\"1\" background_color=\"#f7f7f7\" padding_bottom=\"0\"]\r\n<h2 class=\"g1-h1\" style=\"text-align: center;\"><a href=\"/shortcodes/misc/full-width-sections/\">3Clicks v2 - Now With Full Width Sections</a></h2>\r\n<div></div>\r\n<h3 style=\"text-align: center;\">Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin facilisis commodo sapien, ut accumsan pellentesque arcu auctor nec</h3>\r\n[space]\r\n<div><img style=\"display: block;\" src=\"/wp-content/uploads/2013/09/home_section_visual_1.jpg\" alt=\"Section Visual\" width=\"968\" height=\"380\" /></div>\r\n[/section]\r\n\r\n[section]\r\n\r\n[one_third]\r\n<h2>Awesome Shortcodes</h2>\r\n[duplicator start=\"0\" stop=\"22\" max=\"25\" icon=\"gift\"][/duplicator]\r\n\r\nDuplicators, Animated Numbers, Progress Bars &amp; Circles, Before &amp; After. <a href=\"/shortcodes/\">See The Full List</a>\r\n\r\n[/one_third]\r\n\r\n[one_third]\r\n<h2>Some Facts</h2>\r\n[list type=\"icon\" icon=\"chevron-right\" style=\"simple\"]\r\n<ul>\r\n	<li>100% Responsive &amp; Retina Ready</li>\r\n	<li>SEO Optimized with Microdata Support</li>\r\n	<li>Smart Shortcodes with Shortcode Generator</li>\r\n	<li>Unlimited Colors &amp; Custom Backgrounds</li>\r\n	<li>Video Tutorials and Documentation</li>\r\n	<li>Easy to Use Theme Options Panel</li>\r\n</ul>\r\n[/list]\r\n\r\n[/one_third]\r\n\r\n[one_third_last]\r\n<h2>What Clients Say</h2>\r\n[carousel coin_nav=\"none\" direction_nav=\"none\" progress_bar=\"none\" autoplay=\"standard\"]\r\n\r\n[carousel_item]\r\n\r\n[quote author_name=\"George Novitzky\" author_description=\"Some Company\" author_image=\"/wp-content/uploads/2013/06/quote_author_image_1_v01.jpg\" size=\"small\" style=\"solid\"]\r\n\r\nAuctor sit amet feugiat eu &amp; viverra ac felis. Nullam gravida neque quis augue vestibulum euismod. Suspendisse risus tortor, varius ac malesuada in, mattis vitae mauris.\r\n\r\n[/quote]\r\n\r\n[/carousel_item]\r\n\r\n[carousel_item]\r\n\r\n[quote author_name=\"John Doe\" size=\"small\" style=\"solid\"]\r\n\r\nNullam gravida neque quis augue vestibulum euismod. Suspendisse risus tortor, varius ac malesuada in, mattis vitae mauris. Auctor sit amet feugiat eu &amp; viverra ac felis.\r\n\r\n[/quote]\r\n\r\n[/carousel_item]\r\n\r\n[/carousel]\r\n\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#333333\" background_image=\"/wp-content/uploads/2013/06/revslider_big_1_v01.jpg\" background_position=\"center top\" background_repeat=\"repeat\"]\r\n<h2 style=\"color: #ffffff;\">Recent Works</h2>\r\n[recent_works max=\"6\" template=\"one-third-gallery\" effect=\"grayscale\" hide=\"summary,categories,tags\"]\r\n\r\n[/section]\r\n\r\n[section]\r\n\r\n[box]\r\n\r\n[two_third valign=\"middle\"]\r\n<h2>You Will Love 3Clicks As Much As We Do</h2>\r\n<h3 class=\"g1-h4\">Ullamcorper mi viverra quis. Sed nec suscipit felis.</h3>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\"]\r\n\r\n[button style=\"solid\" size=\"big\" type=\"wide\"]Get Started with 3Clicks[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/box]\r\n\r\n[divider]\r\n<h2>Our Happy Clients</h2>\r\n[one_fifth]\r\n\r\n<img src=\"/wp-content/uploads/2013/06/brand_logo_1_v01.png\" alt=\"Brand Logo 1\" width=\"171\" height=\"77\" />\r\n\r\n[/one_fifth]\r\n\r\n[one_fifth]\r\n\r\n<img src=\"/wp-content/uploads/2013/06/brand_logo_2_v01.png\" alt=\"Brand Logo 2\" width=\"171\" height=\"77\" />\r\n\r\n[/one_fifth]\r\n\r\n[one_fifth]\r\n\r\n<img src=\"/wp-content/uploads/2013/06/brand_logo_3_v01.png\" alt=\"Brand Logo 3\" width=\"171\" height=\"77\" />\r\n\r\n[/one_fifth]\r\n\r\n[one_fifth]\r\n\r\n<img src=\"/wp-content/uploads/2013/06/brand_logo_4_v01.png\" alt=\"Brand Logo 4\" width=\"171\" height=\"77\" />\r\n\r\n[/one_fifth]\r\n\r\n[one_fifth_last]\r\n\r\n<img src=\"/wp-content/uploads/2013/06/brand_logo_5_v01.png\" alt=\"Brand Logo 5\" width=\"171\" height=\"77\" />\r\n\r\n[/one_fifth_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-autosave-v1", "", "", "2014-08-21 18:42:17", "2014-08-21 18:42:17", "", "124", "http://hrd.softons.cu.cc/124-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2178", "1", "2014-08-21 18:14:10", "2014-08-21 18:14:10", " ", "", "", "publish", "open", "open", "", "2178", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2178", "38", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2179", "1", "2014-08-21 18:14:10", "2014-08-21 18:14:10", " ", "", "", "publish", "open", "open", "", "2179", "", "", "2014-08-21 18:29:40", "2014-08-21 18:29:40", "", "0", "http://hrd.softons.cu.cc/?p=2179", "37", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2186", "1", "2014-08-21 18:22:50", "2014-08-21 18:22:50", "", "Services", "", "publish", "open", "open", "", "services-3", "", "", "2014-08-21 18:23:20", "2014-08-21 18:23:20", "", "0", "http://hrd.softons.cu.cc/?p=2186", "3", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2211", "1", "2014-10-16 07:23:07", "2014-10-16 07:23:07", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\nWe offer a huge variety of custom menu styles but to be honest the MetroStyle is our favourite. YouÃ¢â‚¬â„¢ll love it to When your site is ready, stop for a while and ask our designer what can be improved. WhatÃ¢â‚¬â„¢s more, itÃ¢â‚¬â„¢s a totally <strong>FREE</strong> service Besides the awesome Revolution Slider, the 3Clicks Theme includes some new and unconventional sliders\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\nWe offer a huge variety of custom menu styles but to be honest the MetroStyle is our favourite. You\'ll love it too.\r\n\r\n<a href=\"/customize/menu-layouts/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\nWhen your site is ready, stop for a while and ask our designer what can be improved. What\'s more, it\'s a totally <strong>FREE</strong> service!\r\n\r\n<a href=\"/metromenu/design-audits/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\nBesides the awesome Revolution Slider, the 3Clicks Theme includes some new and unconventional sliders.\r\n\r\n<a href=\"/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\nACHIVEMENTS\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\ngdrt\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h2>Some Facts</h2>\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 07:23:07", "2014-10-16 07:23:07", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2192", "1", "2014-08-21 18:55:02", "2014-08-21 18:55:02", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<h2>[icon icon=\"th-large\" size=\"small\" style=\"solid\"][/icon] MetroStyle Menus</h2>\r\nWe offer a huge variety of custom menu styles but to be honest the MetroStyle is our favourite. You\'ll love it too.\r\n\r\n<a href=\"/customize/menu-layouts/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<h2>[icon icon=\"magic\" size=\"small\" style=\"solid\"][/icon] Design Audits</h2>\r\nWhen your site is ready, stop for a while and ask our designer what can be improved. What\'s more, it\'s a totally <strong>FREE</strong> service!\r\n\r\n<a href=\"/metromenu/design-audits/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n<h2>[icon icon=\"gift\" size=\"small\" style=\"solid\"][/icon] Brand New Sliders</h2>\r\nBesides the awesome Revolution Slider, the 3Clicks Theme includes some new and unconventional sliders.\r\n\r\n<a href=\"/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n<h2 class=\"g1-h1\" style=\"text-align: center;\"><a href=\"/shortcodes/misc/full-width-sections/\">3Clicks v2 - Now With Full Width Sections</a></h2>\r\n<div></div>\r\n<h3 style=\"text-align: center;\">Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin facilisis commodo sapien, ut accumsan pellentesque arcu auctor nec</h3>\r\n[space]\r\n\r\n[/space]\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<h2>Awesome Shortcodes</h2>\r\n[duplicator icon=\"gift\" start=\"0\" stop=\"22\" max=\"25\" direction=\"right\" style=\"simple\"]\r\n\r\n[/duplicator]\r\n\r\nDuplicators, Animated Numbers, Progress Bars &amp; Circles, Before &amp; After. <a href=\"/shortcodes/\">See The Full List</a>\r\n\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<h2>Some Facts</h2>\r\n[list type=\"icon\" style=\"simple\" icon=\"chevron-right\"]\r\n<ul>\r\n	<li>100% Responsive &amp; Retina Ready</li>\r\n	<li>SEO Optimized with Microdata Support</li>\r\n	<li>Smart Shortcodes with Shortcode Generator</li>\r\n	<li>Unlimited Colors &amp; Custom Backgrounds</li>\r\n	<li>Video Tutorials and Documentation</li>\r\n	<li>Easy to Use Theme Options Panel</li>\r\n</ul>\r\n[/list]\r\n\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n<h2>What Clients Say</h2>\r\n[carousel coin_nav=\"none\" direction_nav=\"none\" autoplay=\"standard\"]\r\n\r\n[carousel_item]\r\n\r\n[quote author_name=\"George Novitzky\" author_description=\"Some Company\" author_image=\"/wp-content/uploads/2013/06/quote_author_image_1_v01.jpg\" size=\"small\" style=\"solid\"]\r\n\r\nAuctor sit amet feugiat eu &amp; viverra ac felis. Nullam gravida neque quis augue vestibulum euismod. Suspendisse risus tortor, varius ac malesuada in, mattis vitae mauris.\r\n\r\n[/quote]\r\n\r\n[/carousel_item]\r\n\r\n[carousel_item]\r\n\r\n[quote author_name=\"John Doe\" size=\"small\" style=\"solid\"]\r\n\r\nNullam gravida neque quis augue vestibulum euismod. Suspendisse risus tortor, varius ac malesuada in, mattis vitae mauris. Auctor sit amet feugiat eu &amp; viverra ac felis.\r\n\r\n[/quote]\r\n\r\n[/carousel_item]\r\n\r\n[/carousel]\r\n\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#333333\" background_image=\"/wp-content/uploads/2013/06/revslider_big_1_v01.jpg\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<h2 style=\"color: #ffffff;\">Recent Works</h2>\r\n[recent_works template=\"one-third-gallery\" effect=\"grayscale\" hide=\"summary,categories,tags\" max=\"6\"]\r\n\r\n[/recent_works]\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[box style=\"simple\"]\r\n\r\n[two_third valign=\"middle\"]\r\n<h2>You Will Love 3Clicks As Much As We Do</h2>\r\n<h3 class=\"g1-h4\">Ullamcorper mi viverra quis. Sed nec suscipit felis.</h3>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\"]\r\n\r\n[button style=\"solid\" size=\"big\" type=\"wide\"]Get Started with 3Clicks[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/box]\r\n\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Our Happy Clients</h2>\r\n[one_fifth valign=\"top\" animation=\"none\"]\r\n\r\n<img src=\"/wp-content/uploads/2013/06/brand_logo_1_v01.png\" alt=\"Brand Logo 1\" width=\"171\" height=\"77\" />\r\n\r\n[/one_fifth]\r\n\r\n[one_fifth valign=\"top\" animation=\"none\"]\r\n\r\n<img src=\"/wp-content/uploads/2013/06/brand_logo_2_v01.png\" alt=\"Brand Logo 2\" width=\"171\" height=\"77\" />\r\n\r\n[/one_fifth]\r\n\r\n[one_fifth valign=\"top\" animation=\"none\"]\r\n\r\n<img src=\"/wp-content/uploads/2013/06/brand_logo_3_v01.png\" alt=\"Brand Logo 3\" width=\"171\" height=\"77\" />\r\n\r\n[/one_fifth]\r\n\r\n[one_fifth valign=\"top\" animation=\"none\"]\r\n\r\n<img src=\"/wp-content/uploads/2013/06/brand_logo_4_v01.png\" alt=\"Brand Logo 4\" width=\"171\" height=\"77\" />\r\n\r\n[/one_fifth]\r\n\r\n[one_fifth_last valign=\"top\" animation=\"none\"]\r\n\r\n<img src=\"/wp-content/uploads/2013/06/brand_logo_5_v01.png\" alt=\"Brand Logo 5\" width=\"171\" height=\"77\" />\r\n\r\n[/one_fifth_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-08-21 18:55:02", "2014-08-21 18:55:02", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2208", "1", "2014-10-16 07:18:09", "2014-10-16 07:18:09", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<h2>[icon icon=\"th-large\" size=\"small\" style=\"solid\"][/icon] MetroStyle Menus</h2>\r\nWe offer a huge variety of custom menu styles but to be honest the MetroStyle is our favourite. You\'ll love it too.\r\n\r\n<a href=\"/customize/menu-layouts/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<h2>[icon icon=\"magic\" size=\"small\" style=\"solid\"][/icon] Design Audits</h2>\r\nWhen your site is ready, stop for a while and ask our designer what can be improved. What\'s more, it\'s a totally <strong>FREE</strong> service!\r\n\r\n<a href=\"/metromenu/design-audits/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n<h2>[icon icon=\"gift\" size=\"small\" style=\"solid\"][/icon] Brand New Sliders</h2>\r\nBesides the awesome Revolution Slider, the 3Clicks Theme includes some new and unconventional sliders.\r\n\r\n<a href=\"/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<h2>Awesome Shortcodes</h2>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<h2>Some Facts</h2>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n<h2>What Clients Say</h2>\r\n[/one_third_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 07:18:09", "2014-10-16 07:18:09", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2322", "1", "2014-10-18 06:53:01", "2014-10-18 06:53:01", "", "Home", "", "publish", "open", "open", "", "home-2", "", "", "2014-10-18 11:51:54", "2014-10-18 11:51:54", "", "0", "http://hrd.softons.cu.cc/?p=2322", "1", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2212", "1", "2014-10-16 07:23:32", "2014-10-16 07:23:32", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\nWe offer a huge variety of custom menu styles but to be honest the MetroStyle is our favourite. YouÃ¢â‚¬â„¢ll love it to When your site is ready, stop for a while and ask our designer what can be improved. WhatÃ¢â‚¬â„¢s more, itÃ¢â‚¬â„¢s a totally <strong>FREE</strong> service Besides the awesome Revolution Slider, the 3Clicks Theme includes some new and unconventional sliders\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\nWe offer a huge variety of custom menu styles but to be honest the MetroStyle is our favourite. You\'ll love it too.\r\n\r\n<a href=\"/customize/menu-layouts/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\nWhen your site is ready, stop for a while and ask our designer what can be improved. What\'s more, it\'s a totally <strong>FREE</strong> service!\r\n\r\n<a href=\"/metromenu/design-audits/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\nBesides the awesome Revolution Slider, the 3Clicks Theme includes some new and unconventional sliders.\r\n\r\n<a href=\"/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\nACHIVEMENTS\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\ngdrt\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h2>Some Facts</h2>\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 07:23:32", "2014-10-16 07:23:32", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2213", "1", "2014-10-16 07:26:13", "2014-10-16 07:26:13", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">We offer a huge variety of custom menu styles but to be honest the MetroStyle is our favourite. YouÃ¢â‚¬â„¢ll love it to When your site is ready, stop for a while and ask our designer what can be improved. WhatÃ¢â‚¬â„¢s more, itÃ¢â‚¬â„¢s a totally <strong>FREE</strong> service Besides the awesome Revolution Slider, the 3Clicks Theme includes some new and unconventional sliders</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\nWe offer a huge variety of custom menu styles but to be honest the MetroStyle is our favourite. You\'ll love it too.\r\n\r\n<a href=\"/customize/menu-layouts/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\nWhen your site is ready, stop for a while and ask our designer what can be improved. What\'s more, it\'s a totally <strong>FREE</strong> service!\r\n\r\n<a href=\"/metromenu/design-audits/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\nBesides the awesome Revolution Slider, the 3Clicks Theme includes some new and unconventional sliders.\r\n\r\n<a href=\"/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\nACHIVEMENTS\r\n\r\ngdrt\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\nOUR GOAL\r\n<h2>Some Facts</h2>\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 07:26:13", "2014-10-16 07:26:13", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2220", "2", "2014-10-16 09:31:24", "2014-10-16 09:31:24", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\nFood plays a crucial part in our lives. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.\r\n\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\nWe offer a huge variety of custom menu styles but to be honest the MetroStyle is our favourite. You\'ll love it too.\r\n\r\n<a href=\"/customize/menu-layouts/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\nWhen your site is ready, stop for a while and ask our designer what can be improved. What\'s more, it\'s a totally <strong>FREE</strong> service!\r\n\r\n<a href=\"/metromenu/design-audits/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\nBesides the awesome Revolution Slider, the 3Clicks Theme includes some new and unconventional sliders.\r\n\r\n<a href=\"/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\"></p>\r\n\r\n<h2>Some Facts</h2>\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 09:31:24", "2014-10-16 09:31:24", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2214", "1", "2014-10-16 07:28:41", "2014-10-16 07:28:41", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">We offer a huge variety of custom menu styles but to be honest the MetroStyle is our favourite. YouÃ¢â‚¬â„¢ll love it to When your site is ready, stop for a while and ask our designer what can be improved. WhatÃ¢â‚¬â„¢s more, itÃ¢â‚¬â„¢s a totally <strong>FREE</strong> service Besides the awesome Revolution Slider, the 3Clicks Theme includes some new and unconventional sliders</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\nWe offer a huge variety of custom menu styles but to be honest the MetroStyle is our favourite. You\'ll love it too.\r\n\r\n<a href=\"/customize/menu-layouts/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\nWhen your site is ready, stop for a while and ask our designer what can be improved. What\'s more, it\'s a totally <strong>FREE</strong> service!\r\n\r\n<a href=\"/metromenu/design-audits/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\nBesides the awesome Revolution Slider, the 3Clicks Theme includes some new and unconventional sliders.\r\n\r\n<a href=\"/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\"></p>\r\ngdrt\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\"></p>\r\n\r\n<h2>Some Facts</h2>\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 07:28:41", "2014-10-16 07:28:41", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2217", "1", "2014-10-16 09:11:17", "2014-10-16 09:11:17", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/aboutus1.jpg\" alt=\"\" />\r\n<p style=\"text-align: justify;\">I come from a line of NEB Catering family and have been in the catering business most of my life. NEB stands for Nanjundeshwara Bhavan where it was started by our grand father Mr.H.N.Ramaiah(Late) on 1935 at hosur. Later my father Mr.H.R.Sathyanarayana has taken over the family catering business over 30 years. Now, NEB Catering is running successfully under the guidance of Mr. H.S. Kasi Viswanath, B.Sc(Hotel and Catering Management). Almost, we have crossed 78 years in a branded name to establish ourselves firmly as one of the top-notch in the profession. While quality is our trademark, excellence in services and experience that is invaluable is what holds us apart from the rest.</p>\r\n<img class=\"alignright\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/about-us-small-img.png\" alt=\"\" width=\"350 px\" />\r\n<p style=\"text-align: justify;\">With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus. This is our way of giving the customer the best ingredients for a well-functioning and healthy workforce.</p>\r\n<p style=\"text-align: justify;\">We provide catering in various events and occasions like Industrial catering, Birthday parties, Marriages, House warming, Picnic food, Corporate seminars etc. We cater both corporate events and private parties from 10 to 10000 people. Based on the theme, we can provide food for your event. Uses of finest ingredients as spices, vegetables, experienced chefs as long presence in market lead us to this mark today. NEB has extensive experience in the delivery of procurement services on behalf of our customers, utilizing a comprehensive set of best practice procurement processes and tools.</p>\r\n<p style=\"text-align: justify;\">Based on our comprehensive range of favourable procurement agreements with global and local providers we customise attractive individual catering solutions and concepts. Our wide range of suppliers guarantee consistently high quality products and on-time delivery. Taking these parameters into consideration, we are driven by efficiency and cost management to offer you more value for money.</p>\r\n<p style=\"text-align: justify;\">Our staffÃ¢â‚¬â„¢s planning and service made our goodwill and leave impression as delicious and memorable. NEB works on the requirements of customers and also we take care of their taste as per business, schedules, budgets and suggest them for cuisines etc.</p>\r\n[/section]", "About Us", "", "publish", "closed", "closed", "", "about-us", "", "", "2014-10-18 11:50:52", "2014-10-18 11:50:52", "", "0", "http://hrd.softons.cu.cc/?page_id=2217", "0", "page", "", "0");
INSERT INTO `d1_posts` VALUES("2218", "1", "2014-10-16 09:11:17", "2014-10-16 09:11:17", "", "About Us", "", "inherit", "open", "open", "", "2217-revision-v1", "", "", "2014-10-16 09:11:17", "2014-10-16 09:11:17", "", "2217", "http://hrd.softons.cu.cc/2217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2219", "1", "2014-10-16 09:11:41", "2014-10-16 09:11:41", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[/section]", "About Us", "", "inherit", "open", "open", "", "2217-revision-v1", "", "", "2014-10-16 09:11:41", "2014-10-16 09:11:41", "", "2217", "http://hrd.softons.cu.cc/2217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2221", "2", "2014-10-16 09:45:22", "2014-10-16 09:45:22", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\nFood plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, and hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.\r\n\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\nWe offer a huge variety of custom menu styles but to be honest the MetroStyle is our favourite. You\'ll love it too.\r\n\r\n<a href=\"/customize/menu-layouts/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\nWhen your site is ready, stop for a while and ask our designer what can be improved. What\'s more, it\'s a totally <strong>FREE</strong> service!\r\n\r\n<a href=\"/metromenu/design-audits/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\nBesides the awesome Revolution Slider, the 3Clicks Theme includes some new and unconventional sliders.\r\n\r\n<a href=\"/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 09:45:22", "2014-10-16 09:45:22", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2222", "2", "2014-10-16 10:04:06", "2014-10-16 10:04:06", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\nFood plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, and hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.\r\n\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\nVivaham is our new project to give total service (A to Z) at your requirements like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates.\r\n\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\nWhen your site is ready, stop for a while and ask our designer what can be improved. What\'s more, it\'s a totally <strong>FREE</strong> service!\r\n\r\n<a href=\"/metromenu/design-audits/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\nBesides the awesome Revolution Slider, the 3Clicks Theme includes some new and unconventional sliders.\r\n\r\n<a href=\"/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 10:04:06", "2014-10-16 10:04:06", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2223", "2", "2014-10-16 10:10:23", "2014-10-16 10:10:23", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\nFood plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.\r\n\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\nVivaham is our new project to give total service (A to Z) at all your requirements like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates.\r\n\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\nWhen your site is ready, stop for a while and ask our designer what can be improved. What\'s more, it\'s a totally <strong>FREE</strong> service!\r\n\r\n<a href=\"/metromenu/design-audits/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\nBesides the awesome Revolution Slider, the 3Clicks Theme includes some new and unconventional sliders.\r\n\r\n<a href=\"/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 10:10:23", "2014-10-16 10:10:23", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2224", "2", "2014-10-16 10:12:04", "2014-10-16 10:12:04", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\nFood plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.\r\n\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total service (A to Z) at all your requirements like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\nWhen your site is ready, stop for a while and ask our designer what can be improved. What\'s more, it\'s a totally <strong>FREE</strong> service!\r\n\r\n<a href=\"/metromenu/design-audits/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\nBesides the awesome Revolution Slider, the 3Clicks Theme includes some new and unconventional sliders.\r\n\r\n<a href=\"/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 10:12:04", "2014-10-16 10:12:04", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2225", "2", "2014-10-16 10:13:08", "2014-10-16 10:13:08", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: justify;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total service (A to Z) at all your requirements like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\nWhen your site is ready, stop for a while and ask our designer what can be improved. What\'s more, it\'s a totally <strong>FREE</strong> service!\r\n\r\n<a href=\"/metromenu/design-audits/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\nBesides the awesome Revolution Slider, the 3Clicks Theme includes some new and unconventional sliders.\r\n\r\n<a href=\"/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 10:13:08", "2014-10-16 10:13:08", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2226", "2", "2014-10-16 10:33:17", "2014-10-16 10:33:17", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: justify;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total service (A to Z) at all your requirements like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">The Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily requirements on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\nBesides the awesome Revolution Slider, the 3Clicks Theme includes some new and unconventional sliders.\r\n\r\n<a href=\"/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 10:33:17", "2014-10-16 10:33:17", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2227", "1", "2014-10-16 10:36:46", "2014-10-16 10:36:46", "", "logo", "", "inherit", "open", "open", "", "logo", "", "", "2014-10-16 10:36:46", "2014-10-16 10:36:46", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/logo.png", "0", "attachment", "image/png", "0");
INSERT INTO `d1_posts` VALUES("2228", "1", "2014-10-16 10:37:07", "2014-10-16 10:37:07", "", "350x80", "", "inherit", "open", "open", "", "350x80", "", "", "2014-10-16 10:37:07", "2014-10-16 10:37:07", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/350x80.png", "0", "attachment", "image/png", "0");
INSERT INTO `d1_posts` VALUES("2229", "2", "2014-10-16 10:58:40", "2014-10-16 10:58:40", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: justify;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">Vivaham is our new project to give total service (A to Z) at all your requirements like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">The Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily requirements on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\nBesides the awesome Revolution Slider, the 3Clicks Theme includes some new and unconventional sliders.\r\n\r\n<a href=\"/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 10:58:40", "2014-10-16 10:58:40", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2230", "2", "2014-10-16 11:00:54", "2014-10-16 11:00:54", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: justify;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">Vivaham is our new project to give total service (A to Z) at all your requirements like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily requirements on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\nBesides the awesome Revolution Slider, the 3Clicks Theme includes some new and unconventional sliders.\r\n\r\n<a href=\"/\">ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Read More</a>\r\n\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 11:00:54", "2014-10-16 11:00:54", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2231", "2", "2014-10-16 11:27:36", "2014-10-16 11:27:36", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: justify;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">Vivaham is our new project to give total service (A to Z) at all your requirements like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily requirements on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. NEB Catering is committed to achieving excellence through quality food and service in a manner which meets client\'s expectations and achieves.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 11:27:36", "2014-10-16 11:27:36", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2232", "2", "2014-10-16 11:32:02", "2014-10-16 11:32:02", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: justify;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">Vivaham is our new project to give total service (A to Z) at all your requirements like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily requirements on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. NEB Catering is committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 11:32:02", "2014-10-16 11:32:02", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2233", "2", "2014-10-16 11:36:15", "2014-10-16 11:36:15", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: justify;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily requirements on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. NEB Catering is committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 11:36:15", "2014-10-16 11:36:15", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2239", "2", "2014-10-16 11:42:23", "2014-10-16 11:42:23", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img alt=\"\" />Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains and time.\r\n\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily requirements on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. NEB Catering is committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 11:42:23", "2014-10-16 11:42:23", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2234", "2", "2014-10-16 11:37:43", "2014-10-16 11:37:43", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: justify;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains and time.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily requirements on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. NEB Catering is committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 11:37:43", "2014-10-16 11:37:43", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2235", "2", "2014-10-16 11:39:00", "2014-10-16 11:39:00", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains and time.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily requirements on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. NEB Catering is committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 11:39:00", "2014-10-16 11:39:00", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2236", "2", "2014-10-16 11:41:15", "2014-10-16 11:41:15", "", "Babiwala", "", "inherit", "open", "open", "", "babiwala", "", "", "2014-10-16 11:41:15", "2014-10-16 11:41:15", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png", "0", "attachment", "image/png", "0");
INSERT INTO `d1_posts` VALUES("2237", "2", "2014-10-16 11:41:20", "2014-10-16 11:41:20", "", "industrial-catering", "", "inherit", "open", "open", "", "industrial-catering", "", "", "2014-10-16 11:41:20", "2014-10-16 11:41:20", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png", "0", "attachment", "image/png", "0");
INSERT INTO `d1_posts` VALUES("2238", "2", "2014-10-16 11:41:25", "2014-10-16 11:41:25", "", "Vivaha", "", "inherit", "open", "open", "", "vivaha", "", "", "2014-10-16 11:41:25", "2014-10-16 11:41:25", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png", "0", "attachment", "image/png", "0");
INSERT INTO `d1_posts` VALUES("2271", "2", "2014-10-17 04:50:16", "2014-10-17 04:50:16", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2>...........................................................................................................</h2>\r\n[/five_sixth]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/middle-img.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 04:50:16", "2014-10-17 04:50:16", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2240", "2", "2014-10-16 11:43:53", "2014-10-16 11:43:53", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\nVivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains and time.\r\n\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily requirements on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. NEB Catering is committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 11:43:53", "2014-10-16 11:43:53", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2241", "2", "2014-10-16 11:47:35", "2014-10-16 11:47:35", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\nVivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains and time.\r\n\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily requirements on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3>INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. NEB Catering is committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 11:47:35", "2014-10-16 11:47:35", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2242", "2", "2014-10-16 11:54:52", "2014-10-16 11:54:52", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3>VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains and time.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily requirements on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3>INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. NEB Catering is committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 11:54:52", "2014-10-16 11:54:52", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2243", "2", "2014-10-16 11:56:05", "2014-10-16 11:56:05", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3>VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains and time.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3>DABBIWALA</h3>\r\n<p style=\"text-align: center;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily requirements on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3>INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. NEB Catering is committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 11:56:05", "2014-10-16 11:56:05", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2244", "2", "2014-10-16 11:58:01", "2014-10-16 11:58:01", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3>VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains and time.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily requirements on daily basis to your door steeps.</h3>\r\n&nbsp;\r\n\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3>INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. NEB Catering is committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 11:58:01", "2014-10-16 11:58:01", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2245", "2", "2014-10-16 12:01:43", "2014-10-16 12:01:43", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains and time.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily requirements on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. NEB Catering is committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 12:01:43", "2014-10-16 12:01:43", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2255", "2", "2014-10-17 03:39:36", "2014-10-17 03:39:36", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2>........................................................................................</h2>\r\n[/five_sixth]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_sixth_last]\r\n\r\n[/one_sixth_last]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 03:39:36", "2014-10-17 03:39:36", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2246", "2", "2014-10-16 12:03:20", "2014-10-16 12:03:20", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains and time.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily requirements on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. NEB Catering is committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 12:03:20", "2014-10-16 12:03:20", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2247", "2", "2014-10-16 12:05:45", "2014-10-16 12:05:45", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily requirements on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. NEB Catering is committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 12:05:45", "2014-10-16 12:05:45", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2248", "2", "2014-10-16 12:08:36", "2014-10-16 12:08:36", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. NEB is committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 12:08:36", "2014-10-16 12:08:36", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2249", "2", "2014-10-16 12:10:01", "2014-10-16 12:10:01", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We also committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 12:10:01", "2014-10-16 12:10:01", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2250", "2", "2014-10-16 12:12:14", "2014-10-16 12:12:14", "[precontent]\r\n\r\n[two_third valign=\"middle\" animation=\"none\"]\r\n<h2>Let\'s Give Your Website a Brand New Look!</h2>\r\n[/two_third]\r\n\r\n[one_third_last valign=\"middle\" animation=\"none\"]\r\n\r\n[button link=\"http://softons.com\" size=\"big\" style=\"simple\" type=\"wide\"]Button Sample[/button]\r\n\r\n[/one_third_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-16 12:12:14", "2014-10-16 12:12:14", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2251", "1", "2014-10-16 12:28:04", "2014-10-16 12:28:04", "", "Home-slide1", "", "inherit", "open", "open", "", "home-slide1", "", "", "2014-10-16 12:28:04", "2014-10-16 12:28:04", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Home-slide1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `d1_posts` VALUES("2252", "1", "2014-10-16 12:37:49", "2014-10-16 12:37:49", "", "Home-slide2", "", "inherit", "open", "open", "", "home-slide2", "", "", "2014-10-16 12:37:49", "2014-10-16 12:37:49", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Home-slide2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `d1_posts` VALUES("2253", "1", "2014-10-16 12:39:13", "2014-10-16 12:39:13", "", "Home-slide3", "", "inherit", "open", "open", "", "home-slide3", "", "", "2014-10-16 12:39:13", "2014-10-16 12:39:13", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Home-slide3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `d1_posts` VALUES("2254", "1", "2014-10-16 12:41:43", "2014-10-16 12:41:43", "", "350x80", "", "inherit", "open", "open", "", "350x80-2", "", "", "2014-10-16 12:41:43", "2014-10-16 12:41:43", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/350x801.png", "0", "attachment", "image/png", "0");
INSERT INTO `d1_posts` VALUES("2258", "2", "2014-10-17 03:55:30", "2014-10-17 03:55:30", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2>...........................................................................................................</h2>\r\n[/five_sixth]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"arrow-down\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3>ACHIEVEMENTS</h3>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3>GOAL</h3>\r\n[/one_half_last]\r\n\r\n[/section]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 03:55:30", "2014-10-17 03:55:30", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2256", "2", "2014-10-17 03:40:18", "2014-10-17 03:40:18", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2>...........................................................................................................</h2>\r\n[/five_sixth]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 03:40:18", "2014-10-17 03:40:18", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2257", "2", "2014-10-17 03:41:45", "2014-10-17 03:41:45", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2>...........................................................................................................</h2>\r\n[/five_sixth]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_sixth_last]\r\n\r\n[/one_sixth_last]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 03:41:45", "2014-10-17 03:41:45", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2259", "2", "2014-10-17 03:56:26", "2014-10-17 03:56:26", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2>...........................................................................................................</h2>\r\n[/five_sixth]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_sixth_last]\r\n\r\n[/one_sixth_last]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"arrow-down\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3>ACHIEVEMENTS</h3>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3>GOAL</h3>\r\n[/one_half_last]\r\n\r\n[/section]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 03:56:26", "2014-10-17 03:56:26", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2261", "2", "2014-10-17 03:59:39", "2014-10-17 03:59:39", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2>...........................................................................................................</h2>\r\n[/five_sixth]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_sixth_last]\r\n\r\n[/one_sixth_last]kllppolds;,rp\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"arrow-down\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3>ACHIEVEMENTS</h3>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3>GOAL</h3>\r\n[/one_half_last]\r\n\r\n[/section]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 03:59:39", "2014-10-17 03:59:39", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2260", "2", "2014-10-17 03:57:38", "2014-10-17 03:57:38", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2>...........................................................................................................</h2>\r\n[/five_sixth]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_sixth_last]\r\n\r\n[/one_sixth_last]\r\n\r\n[three_fifth id=\"kdgjorelg\" valign=\"top\" animation=\"none\"]\r\n\r\n[/three_fifth]\r\n\r\n[two_fifth_last]\r\n\r\n[/two_fifth_last]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"arrow-down\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3>ACHIEVEMENTS</h3>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3>GOAL</h3>\r\n[/one_half_last]\r\n\r\n[/section]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 03:57:38", "2014-10-17 03:57:38", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2262", "2", "2014-10-17 04:00:28", "2014-10-17 04:00:28", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2>...........................................................................................................</h2>\r\n[/five_sixth]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"arrow-down\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3>ACHIEVEMENTS</h3>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3>GOAL</h3>\r\n[/one_half_last]\r\n\r\n[/section]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 04:00:28", "2014-10-17 04:00:28", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2263", "2", "2014-10-17 04:01:41", "2014-10-17 04:01:41", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2>...........................................................................................................</h2>\r\n[/five_sixth]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"arrow-down\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3>ACHIEVEMENTS</h3>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3>GOAL</h3>\r\n[/one_half_last]\r\n\r\n[/section]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 04:01:41", "2014-10-17 04:01:41", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2264", "2", "2014-10-17 04:04:27", "2014-10-17 04:04:27", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2>...........................................................................................................</h2>\r\n[/five_sixth]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3>ACHIEVEMENTS</h3>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3>GOAL</h3>\r\n[/one_half_last]\r\n\r\n[/section]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 04:04:27", "2014-10-17 04:04:27", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2270", "2", "2014-10-17 04:34:55", "2014-10-17 04:34:55", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2>...........................................................................................................</h2>\r\n[/five_sixth]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/middle-img.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHEIVEMENTS</p>\r\nÃ‚Â» NEB Celebrated the Silver Jubille function at R.K. Mahal on 2011.\r\nÃ‚Â» We Recevied a best service award from chennai friends association on 2011.\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">GOAL</h3>", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 04:34:55", "2014-10-17 04:34:55", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2265", "2", "2014-10-17 04:11:37", "2014-10-17 04:11:37", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2>...........................................................................................................</h2>\r\n[/five_sixth]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3><strong>ACHIEVEMENTS</strong></h3>\r\nÃ‚Â» NEB Celebrated the Silver Jubille function at R.K. Mahal on 2011\r\nÃ‚Â» We Recevied a best service award from chennai friends association on 2011\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3>GOAL</h3>\r\n[/one_half_last]\r\n\r\n[/section]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 04:11:37", "2014-10-17 04:11:37", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2266", "2", "2014-10-17 04:16:34", "2014-10-17 04:16:34", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2>...........................................................................................................</h2>\r\n[/five_sixth]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">ACHIEVEMENTS</h3>\r\n<p style=\"text-align: justify;\">Ã‚Â» NEB Celebrated the Silver Jubille function at R.K. Mahal on 2011\r\nÃ‚Â» We Recevied a best service award from chennai friends association on 2011</p>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3>GOAL</h3>\r\n[/one_half_last]\r\n\r\n[/section]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 04:16:34", "2014-10-17 04:16:34", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2269", "2", "2014-10-17 04:26:26", "2014-10-17 04:26:26", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2>...........................................................................................................</h2>\r\n[/five_sixth]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/middle-img.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHIVEMENTS</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<p style=\"text-align: center;\">gdrt</p>\r\n[/one_half]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<p style=\"text-align: center;\"><strong>OUR GOAL</strong></p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n<h2>Some Facts</h2>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 04:26:26", "2014-10-17 04:26:26", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2267", "2", "2014-10-17 04:22:06", "2014-10-17 04:22:06", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2>...........................................................................................................</h2>\r\n[/five_sixth]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\nCAPTIONS GOES HERE\r\n<div><a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\"><img class=\"alignnone size-full wp-image-2191\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/home_section_visual_1.jpg\" alt=\"home_section_visual_1\" width=\"968\" height=\"380\" /></a></div>\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">ACHIEVEMENTS</h3>\r\n<p style=\"text-align: justify;\">Ã‚Â» NEB Celebrated the Silver Jubille function at R.K. Mahal on 2011\r\nÃ‚Â» We Recevied a best service award from chennai friends association on 2011</p>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">GOAL</h3>\r\n<p style=\"text-align: justify;\">Our Goal is give the best catering services to the international standards economically and to fullfill your all Food &amp; Beverage needs.</p>\r\n[/one_half_last]\r\n\r\n[/section]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 04:22:06", "2014-10-17 04:22:06", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2268", "2", "2014-10-17 04:23:57", "2014-10-17 04:23:57", "", "middle-img", "", "inherit", "open", "open", "", "middle-img", "", "", "2014-10-17 04:23:57", "2014-10-17 04:23:57", "", "124", "http://hrd.softons.cu.cc/wp-content/uploads/2013/03/middle-img.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `d1_posts` VALUES("2276", "2", "2014-10-17 05:07:25", "2014-10-17 05:07:25", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2>There is no sincerer love than the love of food!!</h2>\r\n[/five_sixth]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/middle-img.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHEIVEMENTS</p>\r\nÃ‚Â» NEB Celebrated the Silver Jubille function at R.K. Mahal on 2011.\r\nÃ‚Â» We Recevied a best service award from chennai friends association on 2011.\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 05:07:25", "2014-10-17 05:07:25", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2272", "2", "2014-10-17 04:55:14", "2014-10-17 04:55:14", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2>...........................................................................................................</h2>\r\n[/five_sixth]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/middle-img.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">GOAL</h3>\r\nOur Goal is give the best catering services to the international standards economically and to fullfill your all Food &amp; Beverage needs.\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 04:55:14", "2014-10-17 04:55:14", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2275", "2", "2014-10-17 05:05:59", "2014-10-17 05:05:59", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2>There is no sincerer love than the love of food!! Keep Loving Food as we are here to Serve!!</h2>\r\n[/five_sixth]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/middle-img.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHEIVEMENTS</p>\r\nÃ‚Â» NEB Celebrated the Silver Jubille function at R.K. Mahal on 2011.\r\nÃ‚Â» We Recevied a best service award from chennai friends association on 2011.\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 05:05:59", "2014-10-17 05:05:59", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2274", "2", "2014-10-17 05:04:29", "2014-10-17 05:04:29", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2>There is no sincerer love than the love of food!! Keep Loving Food as we are here to Serve!!</h2>\r\n[/five_sixth]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/middle-img.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHEIVEMENTS</p>\r\nÃ‚Â» NEB Celebrated the Silver Jubille function at R.K. Mahal on 2011.\r\nÃ‚Â» We Recevied a best service award from chennai friends association on 2011.\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]\r\n<h3 style=\"text-align: center;\">GOAL</h3>", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 05:04:29", "2014-10-17 05:04:29", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2273", "2", "2014-10-17 04:59:52", "2014-10-17 04:59:52", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2>...........................................................................................................</h2>\r\n[/five_sixth]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/middle-img.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">ACHEIVEMENTS</h3>\r\nÃ‚Â» NEB Celebrated the Silver Jubille function at R.K. Mahal on 2011\r\nÃ‚Â» We Recevied a best service award from chennai friends association on 2011\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">GOAL</h3>\r\nOur Goal is give the best catering services to the international standards economically and to fullfill your all Food &amp; Beverage needs.\r\n\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 04:59:52", "2014-10-17 04:59:52", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2277", "2", "2014-10-17 05:09:35", "2014-10-17 05:09:35", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2 style=\"text-align: center;\">There is no sincerer love than the love of food!!</h2>\r\n[/five_sixth]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/middle-img.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHEIVEMENTS</p>\r\nÃ‚Â» NEB Celebrated the Silver Jubille function at R.K. Mahal on 2011.\r\nÃ‚Â» We Recevied a best service award from chennai friends association on 2011.\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 05:09:35", "2014-10-17 05:09:35", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2278", "2", "2014-10-17 05:14:35", "2014-10-17 05:14:35", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2 style=\"text-align: center;\">There is no sincerer love than the love of food!! hlhglhhfdshgklhgfhgkhfd</h2>\r\n[/five_sixth]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/middle-img.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHEIVEMENTS</p>\r\nÃ‚Â» NEB Celebrated the Silver Jubille function at R.K. Mahal on 2011.\r\nÃ‚Â» We Recevied a best service award from chennai friends association on 2011.\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 05:14:35", "2014-10-17 05:14:35", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2280", "2", "2014-10-17 05:17:28", "2014-10-17 05:17:28", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2 style=\"text-align: center;\">There is no sincerer love than the love of food!!</h2>\r\n[/five_sixth]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/middle-img.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHEIVEMENTS</p>\r\nÃ‚Â» NEB Celebrated the Silver Jubille function at R.K. Mahal on 2011.\r\nÃ‚Â» We Recevied a best service award from chennai friends association on 2011.\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 05:17:28", "2014-10-17 05:17:28", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2279", "2", "2014-10-17 05:15:48", "2014-10-17 05:15:48", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2 style=\"text-align: center;\">There is no sincerer love than the love of food!! hlhglhhfdshgklhg fhgkhfd</h2>\r\n[/five_sixth]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/middle-img.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[/section]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">ACHEIVEMENTS</p>\r\nÃ‚Â» NEB Celebrated the Silver Jubille function at R.K. Mahal on 2011.\r\nÃ‚Â» We Recevied a best service award from chennai friends association on 2011.\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half_last]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 05:15:48", "2014-10-17 05:15:48", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2281", "2", "2014-10-17 05:22:39", "2014-10-17 05:22:39", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2 style=\"text-align: center;\">There is no sincerer love than the love of food!!</h2>\r\n[/five_sixth]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/middle-img.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">ACHEIVEMENTS</h3>\r\nÃ‚Â» NEB Celebrated the Silver Jubille function at R.K. Mahal on 2011\r\nÃ‚Â» We Recevied a best service award from chennai friends association on 2011\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">GOAL</h3>\r\n<p style=\"text-align: justify;\">Our Goal is give the best catering services to the international standards economically and to full fill your all Food &amp; Beverage needs.</p>\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 05:22:39", "2014-10-17 05:22:39", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2282", "2", "2014-10-17 05:23:55", "2014-10-17 05:23:55", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2 style=\"text-align: center;\">There is no sincerer love than the love of food!!</h2>\r\n[/five_sixth]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/middle-img.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">ACHEIVEMENTS</h3>\r\nÃ‚Â» NEB Celebrated the Silver Jubille function at R.K. Mahal on 2011\r\nÃ‚Â» We Recevied a best service award from chennai friends association on 2011\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">GOAL</h3>\r\n<p style=\"text-align: justify;\">Our Goal is give the best catering services to the international standards economically and to full fill your all Food &amp; Beverage needs.</p>\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 05:23:55", "2014-10-17 05:23:55", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2283", "2", "2014-10-17 05:26:44", "2014-10-17 05:26:44", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2 style=\"text-align: center;\">There is no sincerer love than the love of food!!</h2>\r\n[/five_sixth]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/middle-img.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">ACHEIVEMENTS</h3>\r\nÃ‚Â» NEB Celebrated the Silver Jubille function at R.K. Mahal on 2011\r\nÃ‚Â» We Recevied a best service award from chennai friends association on 2011\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">GOAL</h3>\r\n<p style=\"text-align: justify;\">Our Goal is give the best catering services to the international standards economically and to full fill your all Food &amp; Beverage needs.</p>\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 05:26:44", "2014-10-17 05:26:44", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2284", "2", "2014-10-17 05:28:15", "2014-10-17 05:28:15", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2 style=\"text-align: center;\">There is no sincerer love than the love of food!!</h2>\r\n[/five_sixth]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/middle-img.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">ACHEIVEMENTS</h3>\r\nÃ‚Â» NEB Celebrated the Silver Jubille function at R.K. Mahal on 2011\r\nÃ‚Â» We Recevied a best service award from chennai friends association on 2011\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">GOAL</h3>\r\n<p style=\"text-align: justify;\">Our Goal is give the best catering services to the international standards economically and to full fill your all Food &amp; Beverage needs.</p>\r\n[/one_half_last]\r\n\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-17 05:28:15", "2014-10-17 05:28:15", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2285", "2", "2014-10-17 05:33:10", "2014-10-17 05:33:10", "", "Home-slide4", "", "inherit", "open", "open", "", "home-slide4", "", "", "2014-10-17 05:33:10", "2014-10-17 05:33:10", "", "2217", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Home-slide4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `d1_posts` VALUES("2288", "2", "2014-10-17 05:43:09", "2014-10-17 05:43:09", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/aboutus.jpg\" alt=\"\" />\r\n\r\n[/section]", "About Us", "", "inherit", "open", "open", "", "2217-revision-v1", "", "", "2014-10-17 05:43:09", "2014-10-17 05:43:09", "", "2217", "http://hrd.softons.cu.cc/2217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2286", "2", "2014-10-17 05:36:44", "2014-10-17 05:36:44", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Home-slide4.jpg\"><img class=\"alignnone size-medium wp-image-2285\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Home-slide4-300x96.jpg\" alt=\"Home-slide4\" width=\"300\" height=\"96\" /></a>\r\n\r\n[/section]", "About Us", "", "inherit", "open", "open", "", "2217-revision-v1", "", "", "2014-10-17 05:36:44", "2014-10-17 05:36:44", "", "2217", "http://hrd.softons.cu.cc/2217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2287", "2", "2014-10-17 05:42:19", "2014-10-17 05:42:19", "", "aboutus", "", "inherit", "open", "open", "", "aboutus", "", "", "2014-10-17 05:42:19", "2014-10-17 05:42:19", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/aboutus.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `d1_posts` VALUES("2289", "2", "2014-10-17 05:49:24", "2014-10-17 05:49:24", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/aboutus.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[precontent]\r\n<h3 style=\"text-align: center;\">People Who Love to Eat are always the Best People</h3>\r\n[/precontent]", "About Us", "", "inherit", "open", "open", "", "2217-revision-v1", "", "", "2014-10-17 05:49:24", "2014-10-17 05:49:24", "", "2217", "http://hrd.softons.cu.cc/2217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2290", "2", "2014-10-17 05:56:40", "2014-10-17 05:56:40", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/aboutus.jpg\" alt=\"\" />\r\n<p style=\"text-align: justify;\">I come from a line of NEB Catering family and have been in the catering business most of my life. NEB stands for Nanjundeshwara Bhavan where it was started by our grand father Mr.H.N.Ramaiah(Late) on 1935 at hosur. Later my father Mr.H.R.Sathyanarayana has taken over the family catering and he has successfully run the business over 30 years. Now, NEB Catering is running successfully under the guidance of Mr. H.S. Kasi Viswanath, B.Sc(Hotel and Catering Management). Almost, we have crossed 78 years in a branded name to establish ourselves firmly as one of the top-notch in the profession. While quality is our trademark, excellence in services and experience that is invaluable is what holds us apart from the rest.</p>\r\nWith our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus. This is our way of giving the customer the best ingredients for a well-functioning and healthy workforce.\r\n\r\nWe provide catering in various events and occasions like Industrial catering, Birthday parties, Marriages, House warming, Picnic food, Corporate seminars etc. We cater both corporate events and private parties from 10 to 10000 people. Based on the theme, we can provide food for your event. Uses of finest ingredients as spices, vegetables, experienced chefs as long presence in market lead us to this mark today. NEB has extensive experience in the delivery of procurement services on behalf of our customers, utilising a comprehensive set of best practice procurement processes and tools.\r\n\r\nOur staffÃ¢â‚¬â„¢s planning and service made our goodwill and leave impression as delicious and memorable. NEB works on the requirements of customers and also we take care of their taste as per business, schedules, budgets and suggest them for cuisines etc.\r\n\r\n[/section]\r\n\r\n[precontent]\r\n<h3 style=\"text-align: center;\">People Who Love to Eat are always the Best People</h3>\r\n[/precontent]", "About Us", "", "inherit", "open", "open", "", "2217-revision-v1", "", "", "2014-10-17 05:56:40", "2014-10-17 05:56:40", "", "2217", "http://hrd.softons.cu.cc/2217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2292", "2", "2014-10-17 06:03:57", "2014-10-17 06:03:57", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/aboutus.jpg\" alt=\"\" />\r\n<p style=\"text-align: justify;\">I come from a line of NEB Catering family and have been in the catering business most of my life. NEB stands for Nanjundeshwara Bhavan where it was started by our grand father Mr.H.N.Ramaiah(Late) on 1935 at hosur. Later my father Mr.H.R.Sathyanarayana has taken over the family catering business over 30 years. Now, NEB Catering is running successfully under the guidance of Mr. H.S. Kasi Viswanath, B.Sc(Hotel and Catering Management). Almost, we have crossed 78 years in a branded name to establish ourselves firmly as one of the top-notch in the profession. While quality is our trademark, excellence in services and experience that is invaluable is what holds us apart from the rest.</p>\r\n<p style=\"text-align: justify;\">With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus. This is our way of giving the customer the best ingredients for a well-functioning and healthy workforce.</p>\r\n<p style=\"text-align: justify;\">We provide catering in various events and occasions like Industrial catering, Birthday parties, Marriages, House warming, Picnic food, Corporate seminars etc. We cater both corporate events and private parties from 10 to 10000 people. Based on the theme, we can provide food for your event. Uses of finest ingredients as spices, vegetables, experienced chefs as long presence in market lead us to this mark today. NEB has extensive experience in the delivery of procurement services on behalf of our customers, utilising a comprehensive set of best practice procurement processes and tools.</p>\r\n<p style=\"text-align: justify;\">Our staffÃ¢â‚¬â„¢s planning and service made our goodwill and leave impression as delicious and memorable. NEB works on the requirements of customers and also we take care of their taste as per business, schedules, budgets and suggest them for cuisines etc.</p>\r\n[/section]", "About Us", "", "inherit", "open", "open", "", "2217-revision-v1", "", "", "2014-10-17 06:03:57", "2014-10-17 06:03:57", "", "2217", "http://hrd.softons.cu.cc/2217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2291", "2", "2014-10-17 06:02:55", "2014-10-17 06:02:55", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/aboutus.jpg\" alt=\"\" />\r\n<p style=\"text-align: justify;\">I come from a line of NEB Catering family and have been in the catering business most of my life. NEB stands for Nanjundeshwara Bhavan where it was started by our grand father Mr.H.N.Ramaiah(Late) on 1935 at hosur. Later my father Mr.H.R.Sathyanarayana has taken over the family catering business over 30 years. Now, NEB Catering is running successfully under the guidance of Mr. H.S. Kasi Viswanath, B.Sc(Hotel and Catering Management). Almost, we have crossed 78 years in a branded name to establish ourselves firmly as one of the top-notch in the profession. While quality is our trademark, excellence in services and experience that is invaluable is what holds us apart from the rest.</p>\r\n<p style=\"text-align: justify;\">With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus. This is our way of giving the customer the best ingredients for a well-functioning and healthy workforce.</p>\r\n<p style=\"text-align: justify;\">We provide catering in various events and occasions like Industrial catering, Birthday parties, Marriages, House warming, Picnic food, Corporate seminars etc. We cater both corporate events and private parties from 10 to 10000 people. Based on the theme, we can provide food for your event. Uses of finest ingredients as spices, vegetables, experienced chefs as long presence in market lead us to this mark today. NEB has extensive experience in the delivery of procurement services on behalf of our customers, utilising a comprehensive set of best practice procurement processes and tools.</p>\r\n<p style=\"text-align: justify;\">Our staffÃ¢â‚¬â„¢s planning and service made our goodwill and leave impression as delicious and memorable. NEB works on the requirements of customers and also we take care of their taste as per business, schedules, budgets and suggest them for cuisines etc.</p>\r\n[/section]\r\n\r\n[precontent]\r\n<h3 style=\"text-align: center;\">People Who Love to Eat are always the Best People</h3>\r\n[/precontent]", "About Us", "", "inherit", "open", "open", "", "2217-revision-v1", "", "", "2014-10-17 06:02:55", "2014-10-17 06:02:55", "", "2217", "http://hrd.softons.cu.cc/2217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2293", "2", "2014-10-18 04:53:24", "2014-10-18 04:53:24", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2 style=\"text-align: center;\">Come Experience The Real Taste Of A Quality Food &amp; Make Your Event A Memorable One To You And Your Guests!!</h2>\r\n[/five_sixth]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/middle-img.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">ACHEIVEMENTS</h3>\r\nÃ‚Â» NEB Celebrated the Silver Jubille function at R.K. Mahal on 2011\r\nÃ‚Â» We Recevied a best service award from chennai friends association on 2011\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">GOAL</h3>\r\n<p style=\"text-align: justify;\">Our Goal is give the best catering services to the international standards economically and to full fill your all Food &amp; Beverage needs.</p>\r\n[/one_half_last]\r\n\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-18 04:53:24", "2014-10-18 04:53:24", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2294", "2", "2014-10-18 04:54:43", "2014-10-18 04:54:43", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2 style=\"text-align: center;\"><strong>&gt;Come Experience The Real Taste Of A Quality Food &amp; Make Your Event A Memorable One To You And Your Guests!!</strong></h2>\r\n[/five_sixth]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/middle-img.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">ACHEIVEMENTS</h3>\r\nÃ‚Â» NEB Celebrated the Silver Jubille function at R.K. Mahal on 2011\r\nÃ‚Â» We Recevied a best service award from chennai friends association on 2011\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">GOAL</h3>\r\n<p style=\"text-align: justify;\">Our Goal is give the best catering services to the international standards economically and to full fill your all Food &amp; Beverage needs.</p>\r\n[/one_half_last]\r\n\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-18 04:54:43", "2014-10-18 04:54:43", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2295", "2", "2014-10-18 04:56:02", "2014-10-18 04:56:02", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2 style=\"text-align: center;\"><strong>Come Experience The Real Taste Of A Quality Food &amp; Make Your Event A Memorable One To You And Your Guests!!</strong></h2>\r\n[/five_sixth]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/middle-img.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">ACHEIVEMENTS</h3>\r\nÃ‚Â» NEB Celebrated the Silver Jubille function at R.K. Mahal on 2011\r\nÃ‚Â» We Recevied a best service award from chennai friends association on 2011\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">GOAL</h3>\r\n<p style=\"text-align: justify;\">Our Goal is give the best catering services to the international standards economically and to full fill your all Food &amp; Beverage needs.</p>\r\n[/one_half_last]\r\n\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-18 04:56:02", "2014-10-18 04:56:02", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2296", "2", "2014-10-18 05:00:40", "2014-10-18 05:00:40", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2 style=\"text-align: center;\"><strong>Come Experience The Real Taste Of A Quality Food &amp; Make Your Event A Memorable One To You And Your Guests!!</strong></h2>\r\n[/five_sixth]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[precontent]\r\n<h2 style=\"text-align: center;\"><strong>A Wedding is incomplete without Delicious Food</strong></h2>\r\n[/precontent]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/middle-img.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">ACHEIVEMENTS</h3>\r\nÃ‚Â» NEB Celebrated the Silver Jubille function at R.K. Mahal on 2011\r\nÃ‚Â» We Recevied a best service award from chennai friends association on 2011\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">GOAL</h3>\r\n<p style=\"text-align: justify;\">Our Goal is give the best catering services to the international standards economically and to full fill your all Food &amp; Beverage needs.</p>\r\n[/one_half_last]\r\n\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-18 05:00:40", "2014-10-18 05:00:40", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2298", "2", "2014-10-18 05:04:58", "2014-10-18 05:04:58", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2 style=\"text-align: center;\"><strong>Come Experience The Real Taste Of A Quality Food &amp; Make Your Event A Memorable One To You And Your Guests!!</strong></h2>\r\n[/five_sixth]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/middle-img.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">ACHEIVEMENTS</h3>\r\nÃ‚Â» NEB Celebrated the Silver Jubille function at R.K. Mahal on 2011\r\nÃ‚Â» We Recevied a best service award from chennai friends association on 2011\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">GOAL</h3>\r\n<p style=\"text-align: justify;\">Our Goal is give the best catering services to the international standards economically and to full fill your all Food &amp; Beverage needs.</p>\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-18 05:04:58", "2014-10-18 05:04:58", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2297", "2", "2014-10-18 05:03:14", "2014-10-18 05:03:14", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2 style=\"text-align: center;\"><strong>Come Experience The Real Taste Of A Quality Food &amp; Make Your Event A Memorable One To You And Your Guests!!</strong></h2>\r\n[/five_sixth]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[precontent]\r\n\r\n[five_sixth valign=\"top\" animation=\"none\"]\r\n<h2 style=\"text-align: center;\"><strong>A Wedding is incomplete without Delicious Food</strong></h2>\r\n[/five_sixth]\r\n\r\n[/precontent]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n\r\n[one_sixth_last]\r\n\r\n[/one_sixth_last]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/middle-img.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">ACHEIVEMENTS</h3>\r\nÃ‚Â» NEB Celebrated the Silver Jubille function at R.K. Mahal on 2011\r\nÃ‚Â» We Recevied a best service award from chennai friends association on 2011\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">GOAL</h3>\r\n<p style=\"text-align: justify;\">Our Goal is give the best catering services to the international standards economically and to full fill your all Food &amp; Beverage needs.</p>\r\n[/one_half_last]\r\n\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-18 05:03:14", "2014-10-18 05:03:14", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2327", "1", "2014-10-18 06:57:25", "2014-10-18 06:57:25", "[precontent]\r\n<h2 style=\"text-align: center;\">Come Experience The Real Taste Of A Quality Food &amp; Make Your Event A Memorable One To You And Your Guests!!</h2>\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwala, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labours. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n<h2 style=\"text-align: center;\"><strong>A Wedding is incomplete without Delicious Food</strong></h2>\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/home-section-neb.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">ACHIEVEMENTS</h3>\r\n<p style=\"text-align: center;\">We at family, NEB Celebrated the Silver Jubille function at R.K.Mahal on 2011. We Received a best service award from chennai friends association on 2011.</p>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">GOAL</h3>\r\n<p style=\"text-align: center;\">Our Goal is to give the best catering services to the international standards economically and to full fill your all Food &amp; Beverage needs.</p>\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-18 06:57:25", "2014-10-18 06:57:25", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2299", "2", "2014-10-18 05:18:45", "2014-10-18 05:18:45", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2 style=\"text-align: center;\"><strong>Come Experience The Real Taste Of A Quality Food &amp; Make Your Event A Memorable One To You And Your Guests!!</strong></h2>\r\n[/five_sixth]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n<h2 style=\"text-align: center;\"><strong>A Wedding is incomplete without Delicious Food</strong></h2>\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2013/03/middle-img.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">ACHEIVEMENTS</h3>\r\nÃ‚Â» NEB Celebrated the Silver Jubille function at R.K. Mahal on 2011\r\nÃ‚Â» We Recevied a best service award from chennai friends association on 2011\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">GOAL</h3>\r\n<p style=\"text-align: justify;\">Our Goal is give the best catering services to the international standards economically and to full fill your all Food &amp; Beverage needs.</p>\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-18 05:18:45", "2014-10-18 05:18:45", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2369", "1", "2014-10-28 04:27:00", "2014-10-28 04:27:00", "", "NEB_Menu", "", "inherit", "open", "open", "", "neb_menu", "", "", "2014-10-28 04:27:00", "2014-10-28 04:27:00", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/NEB_Menu.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `d1_posts` VALUES("2301", "2", "2014-10-18 05:21:02", "2014-10-18 05:21:02", "", "home-section-neb", "", "inherit", "open", "open", "", "home-section-neb", "", "", "2014-10-18 05:21:02", "2014-10-18 05:21:02", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/home-section-neb.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `d1_posts` VALUES("2302", "2", "2014-10-18 05:21:58", "2014-10-18 05:21:58", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2 style=\"text-align: center;\"><strong>Come Experience The Real Taste Of A Quality Food &amp; Make Your Event A Memorable One To You And Your Guests!!</strong></h2>\r\n[/five_sixth]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n<h2 style=\"text-align: center;\"><strong>A Wedding is incomplete without Delicious Food</strong></h2>\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/home-section-neb.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">ACHEIVEMENTS</h3>\r\nÃ‚Â» NEB Celebrated the Silver Jubille function at R.K. Mahal on 2011\r\nÃ‚Â» We Recevied a best service award from chennai friends association on 2011\r\n\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">GOAL</h3>\r\n<p style=\"text-align: justify;\">Our Goal is give the best catering services to the international standards economically and to full fill your all Food &amp; Beverage needs.</p>\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-18 05:21:58", "2014-10-18 05:21:58", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2326", "1", "2014-10-18 06:56:47", "2014-10-18 06:56:47", "[precontent]\r\n<h2 style=\"text-align: center;\"><strong>Come Experience The Real Taste Of A Quality Food &amp; Make Your Event A Memorable One To You And Your Guests!!</strong></h2>\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwala, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labours. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n<h2 style=\"text-align: center;\"><strong>A Wedding is incomplete without Delicious Food</strong></h2>\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/home-section-neb.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">ACHIEVEMENTS</h3>\r\n<p style=\"text-align: center;\">We at family, NEB Celebrated the Silver Jubille function at R.K.Mahal on 2011. We Received a best service award from chennai friends association on 2011.</p>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">GOAL</h3>\r\n<p style=\"text-align: center;\">Our Goal is to give the best catering services to the international standards economically and to full fill your all Food &amp; Beverage needs.</p>\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-18 06:56:47", "2014-10-18 06:56:47", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2303", "2", "2014-10-18 05:28:18", "2014-10-18 05:28:18", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2 style=\"text-align: center;\"><strong>Come Experience The Real Taste Of A Quality Food &amp; Make Your Event A Memorable One To You And Your Guests!!</strong></h2>\r\n[/five_sixth]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n<h2 style=\"text-align: center;\"><strong>A Wedding is incomplete without Delicious Food</strong></h2>\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/home-section-neb.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">ACHIEVEMENTS</h3>\r\n<p style=\"text-align: center;\">We at family, NEB Celebrated the Silver Jubille function at R.K.Mahal on 2011. And We also Received a best service award from chennai friends association on 2011.</p>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">GOAL</h3>\r\n<p style=\"text-align: center;\">Our Goal is give the best catering services to the international standards economically and to full fill your all Food &amp; Beverage needs.</p>\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-18 05:28:18", "2014-10-18 05:28:18", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2304", "2", "2014-10-18 05:32:58", "2014-10-18 05:32:58", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2 style=\"text-align: center;\"><strong>Come Experience The Real Taste Of A Quality Food &amp; Make Your Event A Memorable One To You And Your Guests!!</strong></h2>\r\n[/five_sixth]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwalas, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steeps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labors. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n<h2 style=\"text-align: center;\"><strong>A Wedding is incomplete without Delicious Food</strong></h2>\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/home-section-neb.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">ACHIEVEMENTS</h3>\r\n<p style=\"text-align: center;\">We at family, NEB Celebrated the Silver Jubille function at R.K.Mahal on 2011. We Received a best service award from chennai friends association on 2011.</p>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">GOAL</h3>\r\n<p style=\"text-align: center;\">Our Goal is give the best catering services to the international standards economically and to full fill your all Food &amp; Beverage needs.</p>\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-18 05:32:58", "2014-10-18 05:32:58", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2305", "2", "2014-10-18 05:40:36", "2014-10-18 05:40:36", "[precontent]\r\n\r\n[five_sixth valign=\"middle\" animation=\"none\"]\r\n<h2 style=\"text-align: center;\"><strong>Come Experience The Real Taste Of A Quality Food &amp; Make Your Event A Memorable One To You And Your Guests!!</strong></h2>\r\n[/five_sixth]\r\n\r\n[one_sixth_last valign=\"top\" animation=\"none\"]\r\n\r\n[/one_sixth_last]\r\n\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwala, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labours. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n<h2 style=\"text-align: center;\"><strong>A Wedding is incomplete without Delicious Food</strong></h2>\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/home-section-neb.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">ACHIEVEMENTS</h3>\r\n<p style=\"text-align: center;\">We at family, NEB Celebrated the Silver Jubille function at R.K.Mahal on 2011. We Received a best service award from chennai friends association on 2011.</p>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">GOAL</h3>\r\n<p style=\"text-align: center;\">Our Goal is to give the best catering services to the international standards economically and to full fill your all Food &amp; Beverage needs.</p>\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-18 05:40:36", "2014-10-18 05:40:36", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2306", "2", "2014-10-18 05:46:33", "2014-10-18 05:46:33", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/aboutus.jpg\" alt=\"\" />\r\n<p style=\"text-align: justify;\">I come from a line of NEB Catering family and have been in the catering business most of my life. NEB stands for Nanjundeshwara Bhavan where it was started by our grand father Mr.H.N.Ramaiah(Late) on 1935 at hosur. Later my father Mr.H.R.Sathyanarayana has taken over the family catering business over 30 years. Now, NEB Catering is running successfully under the guidance of Mr. H.S. Kasi Viswanath, B.Sc(Hotel and Catering Management). Almost, we have crossed 78 years in a branded name to establish ourselves firmly as one of the top-notch in the profession. While quality is our trademark, excellence in services and experience that is invaluable is what holds us apart from the rest.</p>\r\n<p style=\"text-align: justify;\">With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus. This is our way of giving the customer the best ingredients for a well-functioning and healthy workforce.</p>\r\n<p style=\"text-align: justify;\">We provide catering in various events and occasions like Industrial catering, Birthday parties, Marriages, House warming, Picnic food, Corporate seminars etc. We cater both corporate events and private parties from 10 to 10000 people. Based on the theme, we can provide food for your event. Uses of finest ingredients as spices, vegetables, experienced chefs as long presence in market lead us to this mark today. NEB has extensive experience in the delivery of procurement services on behalf of our customers, utilizing a comprehensive set of best practice procurement processes and tools.</p>\r\n<p style=\"text-align: justify;\">Based on our comprehensive range of favourable procurement agreements with global and local providers we customise attractive individual catering solutions and concepts. Our wide range of suppliers guarantee consistently high quality products and on-time delivery. Taking these parameters into consideration, we are driven by efficiency and cost management to offer you more value for money.</p>\r\n<p style=\"text-align: justify;\">Our staffÃ¢â‚¬â„¢s planning and service made our goodwill and leave impression as delicious and memorable. NEB works on the requirements of customers and also we take care of their taste as per business, schedules, budgets and suggest them for cuisines etc.</p>\r\n[/section]", "About Us", "", "inherit", "open", "open", "", "2217-revision-v1", "", "", "2014-10-18 05:46:33", "2014-10-18 05:46:33", "", "2217", "http://hrd.softons.cu.cc/2217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2307", "2", "2014-10-18 05:52:22", "2014-10-18 05:52:22", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<h3 style=\"text-align: center;\"><strong>NEB\'s Trendy &amp; Traditional Menus</strong></h3>\r\n<p style=\"text-align: justify;\">Beyond our impressive menus, we are proficient in handling all aspects of your events. Our highly experienced catering staff permits us to arrange and customize elegant functions and parties to suit your individual style.</p>\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Menu-Neb4.jpg\" alt=\"\" />\r\n\r\n[/section]", "Our Catalog", "", "publish", "closed", "closed", "", "our-menu", "", "", "2014-10-30 04:07:34", "2014-10-30 04:07:34", "", "0", "http://hrd.softons.cu.cc/?page_id=2307", "0", "page", "", "0");
INSERT INTO `d1_posts` VALUES("2308", "2", "2014-10-18 05:52:22", "2014-10-18 05:52:22", "", "Our Menu", "", "inherit", "open", "open", "", "2307-revision-v1", "", "", "2014-10-18 05:52:22", "2014-10-18 05:52:22", "", "2307", "http://hrd.softons.cu.cc/2307-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2309", "2", "2014-10-18 05:52:58", "2014-10-18 05:52:58", "", "Our Catalog", "", "inherit", "open", "open", "", "2307-revision-v1", "", "", "2014-10-18 05:52:58", "2014-10-18 05:52:58", "", "2307", "http://hrd.softons.cu.cc/2307-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2311", "2", "2014-10-18 06:08:18", "2014-10-18 06:08:18", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<h3 style=\"text-align: center;\"><strong>NEB\'s Trendy &amp; Traditional Menus</strong></h3>\r\n[/section]", "Our Catalog", "", "inherit", "open", "open", "", "2307-revision-v1", "", "", "2014-10-18 06:08:18", "2014-10-18 06:08:18", "", "2307", "http://hrd.softons.cu.cc/2307-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2310", "2", "2014-10-18 06:06:59", "2014-10-18 06:06:59", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[precontent]\r\n\r\n[five_sixth valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\"><strong>NEB\'s Trendy &amp; Traditional Menus</strong></h3>\r\n[/five_sixth]\r\n\r\n[/precontent]\r\n\r\n[/section]", "Our Catalog", "", "inherit", "open", "open", "", "2307-revision-v1", "", "", "2014-10-18 06:06:59", "2014-10-18 06:06:59", "", "2307", "http://hrd.softons.cu.cc/2307-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2312", "2", "2014-10-18 06:10:16", "2014-10-18 06:10:16", "", "Menu-Neb", "", "inherit", "open", "open", "", "menu-neb", "", "", "2014-10-18 06:10:16", "2014-10-18 06:10:16", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Menu-Neb.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `d1_posts` VALUES("2313", "2", "2014-10-18 06:11:22", "2014-10-18 06:11:22", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<h3 style=\"text-align: center;\"><strong>NEB\'s Trendy &amp; Traditional Menus</strong></h3>\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Menu-Neb.jpg\" alt=\"\" />\r\n\r\n[/section]", "Our Catalog", "", "inherit", "open", "open", "", "2307-revision-v1", "", "", "2014-10-18 06:11:22", "2014-10-18 06:11:22", "", "2307", "http://hrd.softons.cu.cc/2307-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2314", "2", "2014-10-18 06:16:58", "2014-10-18 06:16:58", "", "Menu-Neb", "", "inherit", "open", "open", "", "menu-neb-2", "", "", "2014-10-18 06:16:58", "2014-10-18 06:16:58", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Menu-Neb1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `d1_posts` VALUES("2315", "2", "2014-10-18 06:18:00", "2014-10-18 06:18:00", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<h3 style=\"text-align: center;\"><strong>NEB\'s Trendy &amp; Traditional Menus</strong></h3>\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Menu-Neb1.jpg\" alt=\"\" />\r\n\r\n[/section]", "Our Catalog", "", "inherit", "open", "open", "", "2307-revision-v1", "", "", "2014-10-18 06:18:00", "2014-10-18 06:18:00", "", "2307", "http://hrd.softons.cu.cc/2307-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2368", "1", "2014-10-28 04:17:01", "2014-10-28 04:17:01", "", "350x80", "", "inherit", "open", "open", "", "350x80-3", "", "", "2014-10-28 04:17:01", "2014-10-28 04:17:01", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/350x802.png", "0", "attachment", "image/png", "0");
INSERT INTO `d1_posts` VALUES("2317", "2", "2014-10-18 06:23:59", "2014-10-18 06:23:59", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Service.neb_.jpg\" alt=\"\" />\r\n<p style=\"text-align: justify;\">We offer authentic catering services and event management services for all kind of special occasions. We specialize in 100% pure hygienic food and an exclusive variety of food recipes. From Weddings to Corporate Events and other Special Occasions, our professional staff makes sure your event is \"one of its kind\". Count on NEB Catering Service to ensure that your guests leave with a truly unforgettable experience, and that your event is a flawless one from start to finish. Some of the events for what we offer catering services include,</p>\r\n[tabs position=\"top-left\" style=\"button\" type=\"click\"]\r\n\r\n[tab_title]\r\n\r\nCatering Services\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"text-align: justify;\">NEB Catering Services provides Wedding Caterers, Party Caterers and Event Caterers come in all shapes and sizes. We cater both corporate events and private parties from 50 to 5000 people &amp; more. Based on the theme, we can provide food and other arrangements for your door steps.</p>\r\n[/tab_content]\r\n\r\n[tab_title]\r\n\r\nIndustrial Catering\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"align-text: justify;\">NEB Catering Services also caters the catering needs of the corporate segment for all corporate events, parties and meetings to serve food to your corporate employees and labours. We excel in organising all types of corporate events with corporate clients from every industry sector.</p>\r\n<p style=\"align-text: justify;\"><strong>We can serve two types of contract</strong></p>\r\nÃ‚Â»Only labour contract (We will send our labours to your concerns)\r\nÃ‚Â»We will prepare food in our concern or customers concern with our materials and labour.\r\n\r\n[/tab_content]\r\n\r\n[tab_title]\r\n\r\nEvent Catering\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"text-align: justify;\">NEB Catering Services event caterers helps you planning your events (house warming functions, babies naming function, birthday parties, college functions, business meetings, shareholders meetings, etc.,) and provides you a-z services arrangements and catering services.</p>\r\n[/tab_content]\r\n\r\n[tab_title]\r\n\r\nDabbiwala\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"text-align: justify;\">Dabbiwala is our new project to serve the people who dont have time to prepare their food. We will supply your daily requirements on daily basis to your door steps from minimum 1 person to 5000 people &amp; more.</p>\r\n[/tab_content]\r\n\r\n[tab_title]\r\n\r\nVivaham\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"text-align: justify;\">Vivaham is also our new project to brings you the new age of catering services for your wedding events with exclusive menu items. NEB Catering Services, wedding planners and wedding caterers helps you planning your marriage, wedding events and provides you a-z services arrangements (marriage contractors) and catering services. We\'ll work with you to make sure your wedding is the best. You\'re invited to discuss your exact budget and if you require we shall also arrange the flowers, lighting, music and anything else you need.</p>\r\n[/tab_content]\r\n\r\n[/tabs]\r\n\r\n[/section]", "Service", "", "publish", "closed", "closed", "", "services", "", "", "2014-10-18 09:40:06", "2014-10-18 09:40:06", "", "0", "http://hrd.softons.cu.cc/?page_id=2317", "0", "page", "", "0");
INSERT INTO `d1_posts` VALUES("2318", "2", "2014-10-18 06:23:59", "2014-10-18 06:23:59", "", "Services", "", "inherit", "open", "open", "", "2317-revision-v1", "", "", "2014-10-18 06:23:59", "2014-10-18 06:23:59", "", "2317", "http://hrd.softons.cu.cc/2317-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2319", "2", "2014-10-18 06:24:12", "2014-10-18 06:24:12", "", "Service", "", "inherit", "open", "open", "", "2317-revision-v1", "", "", "2014-10-18 06:24:12", "2014-10-18 06:24:12", "", "2317", "http://hrd.softons.cu.cc/2317-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2320", "2", "2014-10-18 06:25:41", "2014-10-18 06:25:41", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[tabs position=\"top-left\" style=\"simple\" type=\"click\"]\r\n\r\n[/tabs]\r\n\r\n[/section]", "Service", "", "inherit", "open", "open", "", "2317-revision-v1", "", "", "2014-10-18 06:25:41", "2014-10-18 06:25:41", "", "2317", "http://hrd.softons.cu.cc/2317-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2321", "2", "2014-10-18 06:39:27", "2014-10-18 06:39:27", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<h3 style=\"text-align: center;\"><strong>NEB\'s Trendy &amp; Traditional Menus</strong></h3>\r\n<p style=\"text-align: justify;\">Beyond our impressive menus, we are proficient in handling all aspects of your events. Our highly experienced catering staff permits us to arrange and customize elegant functions and parties to suit your individual style.</p>\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Menu-Neb1.jpg\" alt=\"\" />\r\n\r\n[/section]", "Our Catalog", "", "inherit", "open", "open", "", "2307-revision-v1", "", "", "2014-10-18 06:39:27", "2014-10-18 06:39:27", "", "2307", "http://hrd.softons.cu.cc/2307-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2323", "1", "2014-10-18 06:53:01", "2014-10-18 06:53:01", " ", "", "", "publish", "open", "open", "", "2323", "", "", "2014-10-18 11:51:54", "2014-10-18 11:51:54", "", "0", "http://hrd.softons.cu.cc/?p=2323", "3", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2324", "1", "2014-10-18 06:53:01", "2014-10-18 06:53:01", " ", "", "", "publish", "open", "open", "", "2324", "", "", "2014-10-18 11:51:54", "2014-10-18 11:51:54", "", "0", "http://hrd.softons.cu.cc/?p=2324", "2", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2325", "2", "2014-10-18 06:54:09", "2014-10-18 06:54:09", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: justify;\">From Weddings to Corporate Events and other Special Occasions, our professional staff makes sure your event is \"one of its kind\". Count on NEB Catering Service to ensure that your guests leave with a truly unforgettable experience, and that your event is a flawless one from start to finish.</p>\r\n[tabs position=\"top-left\" style=\"simple\" type=\"click\"]\r\n\r\n[/tabs]\r\n\r\n[/section]", "Service", "", "inherit", "open", "open", "", "2317-revision-v1", "", "", "2014-10-18 06:54:09", "2014-10-18 06:54:09", "", "2317", "http://hrd.softons.cu.cc/2317-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2328", "1", "2014-10-18 07:00:58", "2014-10-18 07:00:58", "[precontent]\r\n<h2 style=\"text-align: center;\">Come Experience The Real Taste Of A Quality Food &amp; Make Your Event A Memorable One To You And Your Guests!!</h2>\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwala, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labours. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n<h2 style=\"text-align: center;\">A Wedding is incomplete without Delicious Food</h2>\r\n[divider style=\"simple\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/home-section-neb.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">ACHIEVEMENTS</h3>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">OUR GOAL</h3>\r\n[/one_half_last]\r\n\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">We at family, NEB Celebrated the Silver Jubille function at R.K.Mahal on 2011 and We Received a best service award from chennai friends association on 2011.</p>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">Our Goal is to give the best catering services to the international standards economically and to full fill your all Food &amp; Beverage needs.</p>\r\n[/one_half_last]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-18 07:00:58", "2014-10-18 07:00:58", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2329", "1", "2014-10-18 07:01:52", "2014-10-18 07:01:52", "[precontent]\r\n<h2 style=\"text-align: center;\">Come Experience The Real Taste Of A Quality Food &amp; Make Your Event A Memorable One To You And Your Guests!!</h2>\r\n[/precontent]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: center;\">Food plays a crucial part in our lives. For more than a century, the NEB Catering name has been synonymous with superb food, family tradition, hospitality excellence and is an iconic Indian dining experience. Today the NEB Catering &amp; Services Group, under the helm of third generation. With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus.</p>\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Vivaha.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">VIVAHAM</h3>\r\n<p style=\"text-align: justify;\">Vivaham is our new project to give total services (A to Z) at all your needs like catering, decoration, purohit, photos, videos and all your needs for your memorable marriage with our delightful dishes at nominal rates. Our Goal is to minimize your strains.</p>\r\n[/one_third]\r\n\r\n[one_third valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Babiwala.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">DABBIWALA</h3>\r\n<p style=\"text-align: justify;\">On behalf of strong and dedicated force of NEB Catering, the Dabbiwala, have been known to provide excellent services to the people who don\'t have time to prepare their food. We will supply your daily foods on daily basis to your door steps.</p>\r\n[/one_third]\r\n\r\n[one_third_last valign=\"top\" animation=\"none\"]\r\n\r\n<img class=\"aligncenter\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/industrial-catering.png\" alt=\"\" />\r\n<h3 style=\"text-align: center;\">INDUSTRIAL CATERING</h3>\r\n<p style=\"text-align: justify;\">NEB Catering, brings you the new age of catering services for your industries, to serve food to your employees and labours. We committed to achieving excellence through quality food and service in a manner which meets client\'s expectations.</p>\r\n[/one_third_last]\r\n\r\n[/section]\r\n\r\n[section background_color=\"#f7f7f7\" background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\" border_size=\"1\" padding_bottom=\"0\"]\r\n<h2 style=\"text-align: center;\">A Wedding is incomplete without Delicious Food</h2>\r\n[divider style=\"simple\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/home-section-neb.jpg\" alt=\"\" />\r\n\r\n[/section]\r\n\r\n[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">ACHIEVEMENTS</h3>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<h3 style=\"text-align: center;\">OUR GOAL</h3>\r\n[/one_half_last]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">We at family, NEB Celebrated the Silver Jubille function at R.K.Mahal on 2011 and We Received a best service award from chennai friends association on 2011.</p>\r\n[/one_half]\r\n\r\n[one_half_last valign=\"top\" animation=\"none\"]\r\n<p style=\"text-align: center;\">Our Goal is to give the best catering services to the international standards economically and to full fill your all Food &amp; Beverage needs.</p>\r\n[/one_half_last]\r\n\r\n[divider style=\"none\" icon=\"food\"]\r\n\r\n[/divider]\r\n\r\n[/section]", "Home", "", "inherit", "open", "open", "", "124-revision-v1", "", "", "2014-10-18 07:01:52", "2014-10-18 07:01:52", "", "124", "http://hrd.softons.cu.cc/124-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2330", "2", "2014-10-18 07:10:08", "2014-10-18 07:10:08", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: justify;\">We offer authentic catering services and event management services for all kind of special occasions. We specialize in 100% pure hygienic food and an exclusive variety of food recipes. From Weddings to Corporate Events and other Special Occasions, our professional staff makes sure your event is \"one of its kind\". Count on NEB Catering Service to ensure that your guests leave with a truly unforgettable experience, and that your event is a flawless one from start to finish. Some of the events for what we offer catering services include,</p>\r\n[tabs position=\"top-left\" style=\"simple\" type=\"click\"]\r\n\r\n[/tabs]\r\n\r\n[/section]", "Service", "", "inherit", "open", "open", "", "2317-revision-v1", "", "", "2014-10-18 07:10:08", "2014-10-18 07:10:08", "", "2317", "http://hrd.softons.cu.cc/2317-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2331", "2", "2014-10-18 07:26:30", "2014-10-18 07:26:30", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: justify;\">We offer authentic catering services and event management services for all kind of special occasions. We specialize in 100% pure hygienic food and an exclusive variety of food recipes. From Weddings to Corporate Events and other Special Occasions, our professional staff makes sure your event is \"one of its kind\". Count on NEB Catering Service to ensure that your guests leave with a truly unforgettable experience, and that your event is a flawless one from start to finish. Some of the events for what we offer catering services include,</p>\r\n[tabs position=\"top-left\" style=\"simple\" type=\"click\"]\r\n\r\n[tab_title]\r\n\r\nCatering Services\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"text-align: justify;\">NEB Catering Services provides Wedding Caterers, Party Caterers and Event Caterers come in all shapes and sizes, We cater both corporate events and private parties from 50 to 5000 people &amp; more. Based on the theme, we can provide food and other arrangements for your event.</p>\r\n[/tab_content]\r\n\r\n[tab_title]\r\n\r\nIndustrial Catering\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"align-text: justify;\">NEB Catering Services also caters the catering needs of the corporate segment for all corporate events, parties and meetings to serve food to your corporate employees and labours. We excel in organising all types of corporate events with corporate clients from every industry sector.</p>\r\n[/tab_content]\r\n\r\n[/tabs]\r\n\r\n[/section]", "Service", "", "inherit", "open", "open", "", "2317-revision-v1", "", "", "2014-10-18 07:26:30", "2014-10-18 07:26:30", "", "2317", "http://hrd.softons.cu.cc/2317-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2332", "2", "2014-10-18 07:41:58", "2014-10-18 07:41:58", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: justify;\">We offer authentic catering services and event management services for all kind of special occasions. We specialize in 100% pure hygienic food and an exclusive variety of food recipes. From Weddings to Corporate Events and other Special Occasions, our professional staff makes sure your event is \"one of its kind\". Count on NEB Catering Service to ensure that your guests leave with a truly unforgettable experience, and that your event is a flawless one from start to finish. Some of the events for what we offer catering services include,</p>\r\n[tabs position=\"top-left\" style=\"simple\" type=\"click\"]\r\n\r\n[tab_title]\r\n\r\nCatering Services\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"text-align: justify;\">NEB Catering Services provides Wedding Caterers, Party Caterers and Event Caterers come in all shapes and sizes. We cater both corporate events and private parties from 50 to 5000 people &amp; more. Based on the theme, we can provide food and other arrangements for your door steps.</p>\r\n[/tab_content]\r\n\r\n[tab_title]\r\n\r\nIndustrial Catering\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"align-text: justify;\">NEB Catering Services also caters the catering needs of the corporate segment for all corporate events, parties and meetings to serve food to your corporate employees and labours. We excel in organising all types of corporate events with corporate clients from every industry sector.</p>\r\n<p style=\"align-text: justify;\">We can serve two types of contract</p>\r\nÃ‚Â»Only labour contract (We will send our labours to your concerns)\r\nÃ‚Â»We will prepare food in our concern or customers concern with our materials and labour.\r\n\r\n[/tab_content]\r\n\r\n[tab_title]\r\n\r\nEvent Catering\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"text-align: justify;\">NEB Catering Services event caterers helps you planning your events (house warming functions, babies naming function, birthday parties, college functions, business meetings, shareholders meetings, etc.,) and provides you a-z services arrangements and catering services.</p>\r\n[/tab_content]\r\n\r\n[/tabs]\r\n\r\n[/section]", "Service", "", "inherit", "open", "open", "", "2317-revision-v1", "", "", "2014-10-18 07:41:58", "2014-10-18 07:41:58", "", "2317", "http://hrd.softons.cu.cc/2317-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2333", "2", "2014-10-18 07:44:10", "2014-10-18 07:44:10", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: justify;\">We offer authentic catering services and event management services for all kind of special occasions. We specialize in 100% pure hygienic food and an exclusive variety of food recipes. From Weddings to Corporate Events and other Special Occasions, our professional staff makes sure your event is \"one of its kind\". Count on NEB Catering Service to ensure that your guests leave with a truly unforgettable experience, and that your event is a flawless one from start to finish. Some of the events for what we offer catering services include,</p>\r\n[tabs position=\"top-left\" style=\"simple\" type=\"click\"]\r\n\r\n[tab_title]\r\n\r\nCatering Services\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"text-align: justify;\">NEB Catering Services provides Wedding Caterers, Party Caterers and Event Caterers come in all shapes and sizes. We cater both corporate events and private parties from 50 to 5000 people &amp; more. Based on the theme, we can provide food and other arrangements for your door steps.</p>\r\n[/tab_content]\r\n\r\n[tab_title]\r\n\r\nIndustrial Catering\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"align-text: justify;\">NEB Catering Services also caters the catering needs of the corporate segment for all corporate events, parties and meetings to serve food to your corporate employees and labours. We excel in organising all types of corporate events with corporate clients from every industry sector.</p>\r\n<p style=\"align-text: justify;\"><strong>We can serve two types of contract</strong></p>\r\nÃ‚Â»Only labour contract (We will send our labours to your concerns)\r\nÃ‚Â»We will prepare food in our concern or customers concern with our materials and labour.\r\n\r\n[/tab_content]\r\n\r\n[tab_title]\r\n\r\nEvent Catering\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"text-align: justify;\">NEB Catering Services event caterers helps you planning your events (house warming functions, babies naming function, birthday parties, college functions, business meetings, shareholders meetings, etc.,) and provides you a-z services arrangements and catering services.</p>\r\n[/tab_content]\r\n\r\n[/tabs]\r\n\r\n[/section]", "Service", "", "inherit", "open", "open", "", "2317-revision-v1", "", "", "2014-10-18 07:44:10", "2014-10-18 07:44:10", "", "2317", "http://hrd.softons.cu.cc/2317-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2334", "2", "2014-10-18 07:51:40", "2014-10-18 07:51:40", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: justify;\">We offer authentic catering services and event management services for all kind of special occasions. We specialize in 100% pure hygienic food and an exclusive variety of food recipes. From Weddings to Corporate Events and other Special Occasions, our professional staff makes sure your event is \"one of its kind\". Count on NEB Catering Service to ensure that your guests leave with a truly unforgettable experience, and that your event is a flawless one from start to finish. Some of the events for what we offer catering services include,</p>\r\n[tabs position=\"top-left\" style=\"simple\" type=\"click\"]\r\n\r\n[tab_title]\r\n\r\nCatering Services\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"text-align: justify;\">NEB Catering Services provides Wedding Caterers, Party Caterers and Event Caterers come in all shapes and sizes. We cater both corporate events and private parties from 50 to 5000 people &amp; more. Based on the theme, we can provide food and other arrangements for your door steps.</p>\r\n[/tab_content]\r\n\r\n[tab_title]\r\n\r\nIndustrial Catering\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"align-text: justify;\">NEB Catering Services also caters the catering needs of the corporate segment for all corporate events, parties and meetings to serve food to your corporate employees and labours. We excel in organising all types of corporate events with corporate clients from every industry sector.</p>\r\n<p style=\"align-text: justify;\"><strong>We can serve two types of contract</strong></p>\r\nÃ‚Â»Only labour contract (We will send our labours to your concerns)\r\nÃ‚Â»We will prepare food in our concern or customers concern with our materials and labour.\r\n\r\n[/tab_content]\r\n\r\n[tab_title]\r\n\r\nEvent Catering\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"text-align: justify;\">NEB Catering Services event caterers helps you planning your events (house warming functions, babies naming function, birthday parties, college functions, business meetings, shareholders meetings, etc.,) and provides you a-z services arrangements and catering services.</p>\r\n[/tab_content]\r\n\r\n[tab_title]\r\n\r\nDabbiwala\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"text-align: justify;\">Dabbiwala is our new project to serve the people who dont have time to prepare their food. We will supply your daily requirements on daily basis to your door steps from minimum 1 person to 5000 people &amp; more.</p>\r\n[/tab_content]\r\n\r\n[/tabs]\r\n\r\n[/section]", "Service", "", "inherit", "open", "open", "", "2317-revision-v1", "", "", "2014-10-18 07:51:40", "2014-10-18 07:51:40", "", "2317", "http://hrd.softons.cu.cc/2317-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2335", "2", "2014-10-18 09:08:31", "2014-10-18 09:08:31", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<p style=\"text-align: justify;\">We offer authentic catering services and event management services for all kind of special occasions. We specialize in 100% pure hygienic food and an exclusive variety of food recipes. From Weddings to Corporate Events and other Special Occasions, our professional staff makes sure your event is \"one of its kind\". Count on NEB Catering Service to ensure that your guests leave with a truly unforgettable experience, and that your event is a flawless one from start to finish. Some of the events for what we offer catering services include,</p>\r\n[tabs position=\"top-left\" style=\"button\" type=\"click\"]\r\n\r\n[tab_title]\r\n\r\nCatering Services\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"text-align: justify;\">NEB Catering Services provides Wedding Caterers, Party Caterers and Event Caterers come in all shapes and sizes. We cater both corporate events and private parties from 50 to 5000 people &amp; more. Based on the theme, we can provide food and other arrangements for your door steps.</p>\r\n[/tab_content]\r\n\r\n[tab_title]\r\n\r\nIndustrial Catering\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"align-text: justify;\">NEB Catering Services also caters the catering needs of the corporate segment for all corporate events, parties and meetings to serve food to your corporate employees and labours. We excel in organising all types of corporate events with corporate clients from every industry sector.</p>\r\n<p style=\"align-text: justify;\"><strong>We can serve two types of contract</strong></p>\r\nÃ‚Â»Only labour contract (We will send our labours to your concerns)\r\nÃ‚Â»We will prepare food in our concern or customers concern with our materials and labour.\r\n\r\n[/tab_content]\r\n\r\n[tab_title]\r\n\r\nEvent Catering\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"text-align: justify;\">NEB Catering Services event caterers helps you planning your events (house warming functions, babies naming function, birthday parties, college functions, business meetings, shareholders meetings, etc.,) and provides you a-z services arrangements and catering services.</p>\r\n[/tab_content]\r\n\r\n[tab_title]\r\n\r\nDabbiwala\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"text-align: justify;\">Dabbiwala is our new project to serve the people who dont have time to prepare their food. We will supply your daily requirements on daily basis to your door steps from minimum 1 person to 5000 people &amp; more.</p>\r\n[/tab_content]\r\n\r\n[tab_title]\r\n\r\nVivaham\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"text-align: justify;\">Vivaham is also our new project to brings you the new age of catering services for your wedding events with exclusive menu items. NEB Catering Services, wedding planners and wedding caterers helps you planning your marriage, wedding events and provides you a-z services arrangements (marriage contractors) and catering services. We\'ll work with you to make sure your wedding is the best. You\'re invited to discuss your exact budget and if you require we shall also arrange the flowers, lighting, music and anything else you need.</p>\r\n[/tab_content]\r\n\r\n[/tabs]\r\n\r\n[/section]", "Service", "", "inherit", "open", "open", "", "2317-revision-v1", "", "", "2014-10-18 09:08:31", "2014-10-18 09:08:31", "", "2317", "http://hrd.softons.cu.cc/2317-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2336", "1", "2014-10-18 09:28:49", "2014-10-18 09:28:49", "", "Mobile-logo", "", "inherit", "open", "open", "", "mobile-logo", "", "", "2014-10-18 09:28:49", "2014-10-18 09:28:49", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Mobile-logo.png", "0", "attachment", "image/png", "0");
INSERT INTO `d1_posts` VALUES("2337", "1", "2014-10-18 09:29:28", "2014-10-18 09:29:28", "", "favicon", "", "inherit", "open", "open", "", "favicon", "", "", "2014-10-18 09:29:28", "2014-10-18 09:29:28", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/favicon.png", "0", "attachment", "image/png", "0");
INSERT INTO `d1_posts` VALUES("2338", "2", "2014-10-18 09:39:31", "2014-10-18 09:39:31", "", "Service.neb", "", "inherit", "open", "open", "", "service-neb", "", "", "2014-10-18 09:39:31", "2014-10-18 09:39:31", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Service.neb_.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `d1_posts` VALUES("2339", "2", "2014-10-18 09:40:06", "2014-10-18 09:40:06", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Service.neb_.jpg\" alt=\"\" />\r\n<p style=\"text-align: justify;\">We offer authentic catering services and event management services for all kind of special occasions. We specialize in 100% pure hygienic food and an exclusive variety of food recipes. From Weddings to Corporate Events and other Special Occasions, our professional staff makes sure your event is \"one of its kind\". Count on NEB Catering Service to ensure that your guests leave with a truly unforgettable experience, and that your event is a flawless one from start to finish. Some of the events for what we offer catering services include,</p>\r\n[tabs position=\"top-left\" style=\"button\" type=\"click\"]\r\n\r\n[tab_title]\r\n\r\nCatering Services\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"text-align: justify;\">NEB Catering Services provides Wedding Caterers, Party Caterers and Event Caterers come in all shapes and sizes. We cater both corporate events and private parties from 50 to 5000 people &amp; more. Based on the theme, we can provide food and other arrangements for your door steps.</p>\r\n[/tab_content]\r\n\r\n[tab_title]\r\n\r\nIndustrial Catering\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"align-text: justify;\">NEB Catering Services also caters the catering needs of the corporate segment for all corporate events, parties and meetings to serve food to your corporate employees and labours. We excel in organising all types of corporate events with corporate clients from every industry sector.</p>\r\n<p style=\"align-text: justify;\"><strong>We can serve two types of contract</strong></p>\r\nÃ‚Â»Only labour contract (We will send our labours to your concerns)\r\nÃ‚Â»We will prepare food in our concern or customers concern with our materials and labour.\r\n\r\n[/tab_content]\r\n\r\n[tab_title]\r\n\r\nEvent Catering\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"text-align: justify;\">NEB Catering Services event caterers helps you planning your events (house warming functions, babies naming function, birthday parties, college functions, business meetings, shareholders meetings, etc.,) and provides you a-z services arrangements and catering services.</p>\r\n[/tab_content]\r\n\r\n[tab_title]\r\n\r\nDabbiwala\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"text-align: justify;\">Dabbiwala is our new project to serve the people who dont have time to prepare their food. We will supply your daily requirements on daily basis to your door steps from minimum 1 person to 5000 people &amp; more.</p>\r\n[/tab_content]\r\n\r\n[tab_title]\r\n\r\nVivaham\r\n\r\n[/tab_title]\r\n\r\n[tab_content]\r\n<p style=\"text-align: justify;\">Vivaham is also our new project to brings you the new age of catering services for your wedding events with exclusive menu items. NEB Catering Services, wedding planners and wedding caterers helps you planning your marriage, wedding events and provides you a-z services arrangements (marriage contractors) and catering services. We\'ll work with you to make sure your wedding is the best. You\'re invited to discuss your exact budget and if you require we shall also arrange the flowers, lighting, music and anything else you need.</p>\r\n[/tab_content]\r\n\r\n[/tabs]\r\n\r\n[/section]", "Service", "", "inherit", "open", "open", "", "2317-revision-v1", "", "", "2014-10-18 09:40:06", "2014-10-18 09:40:06", "", "2317", "http://hrd.softons.cu.cc/2317-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2340", "1", "2014-10-18 09:44:50", "2014-10-18 09:44:50", " ", "", "", "publish", "open", "open", "", "2340", "", "", "2014-10-18 11:51:54", "2014-10-18 11:51:54", "", "0", "http://hrd.softons.cu.cc/?p=2340", "4", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2341", "2", "2014-10-18 10:53:51", "2014-10-18 10:53:51", "", "aboutus", "", "inherit", "open", "open", "", "aboutus-2", "", "", "2014-10-18 10:53:51", "2014-10-18 10:53:51", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/aboutus1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `d1_posts` VALUES("2342", "2", "2014-10-18 10:54:54", "2014-10-18 10:54:54", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/aboutus1.jpg\" alt=\"\" />\r\n<p style=\"text-align: justify;\">I come from a line of NEB Catering family and have been in the catering business most of my life. NEB stands for Nanjundeshwara Bhavan where it was started by our grand father Mr.H.N.Ramaiah(Late) on 1935 at hosur. Later my father Mr.H.R.Sathyanarayana has taken over the family catering business over 30 years. Now, NEB Catering is running successfully under the guidance of Mr. H.S. Kasi Viswanath, B.Sc(Hotel and Catering Management). Almost, we have crossed 78 years in a branded name to establish ourselves firmly as one of the top-notch in the profession. While quality is our trademark, excellence in services and experience that is invaluable is what holds us apart from the rest.</p>\r\n<p style=\"text-align: justify;\">With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus. This is our way of giving the customer the best ingredients for a well-functioning and healthy workforce.</p>\r\n<p style=\"text-align: justify;\">We provide catering in various events and occasions like Industrial catering, Birthday parties, Marriages, House warming, Picnic food, Corporate seminars etc. We cater both corporate events and private parties from 10 to 10000 people. Based on the theme, we can provide food for your event. Uses of finest ingredients as spices, vegetables, experienced chefs as long presence in market lead us to this mark today. NEB has extensive experience in the delivery of procurement services on behalf of our customers, utilizing a comprehensive set of best practice procurement processes and tools.</p>\r\n<p style=\"text-align: justify;\">Based on our comprehensive range of favourable procurement agreements with global and local providers we customise attractive individual catering solutions and concepts. Our wide range of suppliers guarantee consistently high quality products and on-time delivery. Taking these parameters into consideration, we are driven by efficiency and cost management to offer you more value for money.</p>\r\n<p style=\"text-align: justify;\">Our staffÃ¢â‚¬â„¢s planning and service made our goodwill and leave impression as delicious and memorable. NEB works on the requirements of customers and also we take care of their taste as per business, schedules, budgets and suggest them for cuisines etc.</p>\r\n[/section]", "About Us", "", "inherit", "open", "open", "", "2217-revision-v1", "", "", "2014-10-18 10:54:54", "2014-10-18 10:54:54", "", "2217", "http://hrd.softons.cu.cc/2217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2343", "1", "2014-10-18 11:18:08", "2014-10-18 11:18:08", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Contact-us.jpg\" alt=\"\">\r\n\r\n[three_fifth valign=\"top\" animation=\"none\"]\r\n<h3>Feel free to contact us...</h3>\r\n[contact-form-7 id=\"2347\" title=\"Contact form 1\"][/contact-form-7]\r\n\r\n[/three_fifth]\r\n\r\n[two_fifth_last valign=\"top\" animation=\"none\"]\r\n<h3>Office Location</h3>\r\nNEB Catering Service,\r\n#M82A, Rainbow Gardens,\r\nTNHB Phase - VI,\r\nOpp Amma Hospital,\r\nBasthi Road,\r\nHOSUR - 635 109.<br/>\r\nPhone No : +91 93623 12841<br/>\r\nEmail Id : nebcatering@gmail.com<br/>\r\n\r\n\r\n[/two_fifth_last]\r\n\r\n[/section]", "Get a Quote", "", "publish", "closed", "closed", "", "contact-us", "", "", "2014-10-20 04:17:27", "2014-10-20 04:17:27", "", "0", "http://hrd.softons.cu.cc/?page_id=2343", "0", "page", "", "0");
INSERT INTO `d1_posts` VALUES("2344", "1", "2014-10-18 11:18:08", "2014-10-18 11:18:08", "", "Contact Us", "", "inherit", "open", "open", "", "2343-revision-v1", "", "", "2014-10-18 11:18:08", "2014-10-18 11:18:08", "", "2343", "http://hrd.softons.cu.cc/2343-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2345", "1", "2014-10-18 11:18:51", "2014-10-18 11:18:51", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[/section]", "Contact Us", "", "inherit", "open", "open", "", "2343-revision-v1", "", "", "2014-10-18 11:18:51", "2014-10-18 11:18:51", "", "2343", "http://hrd.softons.cu.cc/2343-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2346", "1", "2014-10-18 11:29:37", "2014-10-18 11:29:37", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[/one_half]\r\n\r\n[/section]", "Get a Quote", "", "inherit", "open", "open", "", "2343-revision-v1", "", "", "2014-10-18 11:29:37", "2014-10-18 11:29:37", "", "2343", "http://hrd.softons.cu.cc/2343-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2347", "1", "2014-10-18 11:31:22", "2014-10-18 11:31:22", "<p>Name *<br />\r\n    [text* text-794]</p>\r\n\r\n<p>Email *<br />\r\n    [email* email-369] </p>\r\n\r\n<p>Subject<br />\r\n    [text text-660]</p>\r\n\r\n<p>Your Message<br />\r\n[textarea textarea-465] </p>\r\n\r\n<p>[submit \"Send\"]</p>\n[text-660]\n[text-794]< [email-369]>\nFrom: [text-794] <[email-369]>\r\nSubject: [text-660]\r\n\r\nMessage Body:\r\n[textarea-465]\r\n\r\n--\r\nThis e-mail was sent from a contact form on NEB Catering (http://hrd.softons.cu.cc)\nenquiry@softons.com\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nNEB Catering <wordpress@neb.softonssoft.cu.cc>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on NEB Catering (http://hrd.softons.cu.cc)\n[your-email]\nReply-To: info@softons.in\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 the required field.\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", "", "", "2014-10-18 11:48:40", "2014-10-18 11:48:40", "", "0", "http://hrd.softons.cu.cc/?post_type=wpcf7_contact_form&#038;p=2347", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `d1_posts` VALUES("2348", "2", "2014-10-18 11:35:17", "2014-10-18 11:35:17", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\n\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/aboutus1.jpg\" alt=\"\" />\n<p style=\"text-align: justify;\">I come from a line of NEB Catering family and have been in the catering business most of my life. NEB stands for Nanjundeshwara Bhavan where it was started by our grand father Mr.H.N.Ramaiah(Late) on 1935 at hosur. Later my father Mr.H.R.Sathyanarayana has taken over the family catering business over 30 years. Now, NEB Catering is running successfully under the guidance of Mr. H.S. Kasi Viswanath, B.Sc(Hotel and Catering Management). Almost, we have crossed 78 years in a branded name to establish ourselves firmly as one of the top-notch in the profession. While quality is our trademark, excellence in services and experience that is invaluable is what holds us apart from the rest.</p>\n<p style=\"text-align: justify;\">With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus. This is our way of giving the customer the best ingredients for a well-functioning and healthy workforce.</p>\n<p style=\"text-align: justify;\">We provide catering in various events and occasions like Industrial catering, Birthday parties, Marriages, House warming, Picnic food, Corporate seminars etc. We cater both corporate events and private parties from 10 to 10000 people. Based on the theme, we can provide food for your event. Uses of finest ingredients as spices, vegetables, experienced chefs as long presence in market lead us to this mark today. NEB has extensive experience in the delivery of procurement services on behalf of our customers, utilizing a comprehensive set of best practice procurement processes and tools.</p>\n<p style=\"text-align: justify;\">Based on our comprehensive range of favourable procurement agreements with global and local providers we customise attractive individual catering solutions and concepts. Our wide range of suppliers guarantee consistently high quality products and on-time delivery. Taking these parameters into consideration, we are driven by efficiency and cost management to offer you more value for money.</p>\n<p style=\"text-align: justify;\">Our staffÃ¢â‚¬â„¢s planning and service made our goodwill and leave impression as delicious and memorable. NEB works on the requirements of customers and also we take care of their taste as per business, schedules, budgets and suggest them for cuisines etc.</p>\n[/section]", "About Us", "", "inherit", "open", "open", "", "2217-autosave-v1", "", "", "2014-10-18 11:35:17", "2014-10-18 11:35:17", "", "2217", "http://hrd.softons.cu.cc/2217-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2349", "2", "2014-10-18 11:36:35", "2014-10-18 11:36:35", "", "aboutus-small", "", "inherit", "open", "open", "", "aboutus-small", "", "", "2014-10-18 11:36:35", "2014-10-18 11:36:35", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/aboutus-small.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `d1_posts` VALUES("2350", "2", "2014-10-18 11:38:31", "2014-10-18 11:38:31", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/aboutus1.jpg\" alt=\"\" />\r\n<p style=\"text-align: justify;\">I come from a line of NEB Catering family and have been in the catering business most of my life. NEB stands for Nanjundeshwara Bhavan where it was started by our grand father Mr.H.N.Ramaiah(Late) on 1935 at hosur. Later my father Mr.H.R.Sathyanarayana has taken over the family catering business over 30 years. Now, NEB Catering is running successfully under the guidance of Mr. H.S. Kasi Viswanath, B.Sc(Hotel and Catering Management). Almost, we have crossed 78 years in a branded name to establish ourselves firmly as one of the top-notch in the profession. While quality is our trademark, excellence in services and experience that is invaluable is what holds us apart from the rest.</p>\r\n<img class=\"alignleft\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/aboutus-small.jpg\" alt=\"\" />\r\n<p style=\"text-align: justify;\">With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus. This is our way of giving the customer the best ingredients for a well-functioning and healthy workforce.</p>\r\n<p style=\"text-align: justify;\">We provide catering in various events and occasions like Industrial catering, Birthday parties, Marriages, House warming, Picnic food, Corporate seminars etc. We cater both corporate events and private parties from 10 to 10000 people. Based on the theme, we can provide food for your event. Uses of finest ingredients as spices, vegetables, experienced chefs as long presence in market lead us to this mark today. NEB has extensive experience in the delivery of procurement services on behalf of our customers, utilizing a comprehensive set of best practice procurement processes and tools.</p>\r\n<p style=\"text-align: justify;\">Based on our comprehensive range of favourable procurement agreements with global and local providers we customise attractive individual catering solutions and concepts. Our wide range of suppliers guarantee consistently high quality products and on-time delivery. Taking these parameters into consideration, we are driven by efficiency and cost management to offer you more value for money.</p>\r\n<p style=\"text-align: justify;\">Our staffÃ¢â‚¬â„¢s planning and service made our goodwill and leave impression as delicious and memorable. NEB works on the requirements of customers and also we take care of their taste as per business, schedules, budgets and suggest them for cuisines etc.</p>\r\n[/section]", "About Us", "", "inherit", "open", "open", "", "2217-revision-v1", "", "", "2014-10-18 11:38:31", "2014-10-18 11:38:31", "", "2217", "http://hrd.softons.cu.cc/2217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2351", "2", "2014-10-18 11:44:48", "2014-10-18 11:44:48", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/aboutus1.jpg\" alt=\"\" />\r\n<p style=\"text-align: justify;\">I come from a line of NEB Catering family and have been in the catering business most of my life. NEB stands for Nanjundeshwara Bhavan where it was started by our grand father Mr.H.N.Ramaiah(Late) on 1935 at hosur. Later my father Mr.H.R.Sathyanarayana has taken over the family catering business over 30 years. Now, NEB Catering is running successfully under the guidance of Mr. H.S. Kasi Viswanath, B.Sc(Hotel and Catering Management). Almost, we have crossed 78 years in a branded name to establish ourselves firmly as one of the top-notch in the profession. While quality is our trademark, excellence in services and experience that is invaluable is what holds us apart from the rest.</p>\r\n<img class=\"alignright\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/aboutus-small.jpg\" alt=\"\" />\r\n<p style=\"text-align: justify;\">With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus. This is our way of giving the customer the best ingredients for a well-functioning and healthy workforce.</p>\r\n<p style=\"text-align: justify;\">We provide catering in various events and occasions like Industrial catering, Birthday parties, Marriages, House warming, Picnic food, Corporate seminars etc. We cater both corporate events and private parties from 10 to 10000 people. Based on the theme, we can provide food for your event. Uses of finest ingredients as spices, vegetables, experienced chefs as long presence in market lead us to this mark today. NEB has extensive experience in the delivery of procurement services on behalf of our customers, utilizing a comprehensive set of best practice procurement processes and tools.</p>\r\n<p style=\"text-align: justify;\">Based on our comprehensive range of favourable procurement agreements with global and local providers we customise attractive individual catering solutions and concepts. Our wide range of suppliers guarantee consistently high quality products and on-time delivery. Taking these parameters into consideration, we are driven by efficiency and cost management to offer you more value for money.</p>\r\n<p style=\"text-align: justify;\">Our staffÃ¢â‚¬â„¢s planning and service made our goodwill and leave impression as delicious and memorable. NEB works on the requirements of customers and also we take care of their taste as per business, schedules, budgets and suggest them for cuisines etc.</p>\r\n[/section]", "About Us", "", "inherit", "open", "open", "", "2217-revision-v1", "", "", "2014-10-18 11:44:48", "2014-10-18 11:44:48", "", "2217", "http://hrd.softons.cu.cc/2217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2352", "2", "2014-10-18 11:46:16", "2014-10-18 11:46:16", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/aboutus1.jpg\" alt=\"\" />\r\n<p style=\"text-align: justify;\">I come from a line of NEB Catering family and have been in the catering business most of my life. NEB stands for Nanjundeshwara Bhavan where it was started by our grand father Mr.H.N.Ramaiah(Late) on 1935 at hosur. Later my father Mr.H.R.Sathyanarayana has taken over the family catering business over 30 years. Now, NEB Catering is running successfully under the guidance of Mr. H.S. Kasi Viswanath, B.Sc(Hotel and Catering Management). Almost, we have crossed 78 years in a branded name to establish ourselves firmly as one of the top-notch in the profession. While quality is our trademark, excellence in services and experience that is invaluable is what holds us apart from the rest.</p>\r\n<img class=\"alignright\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/aboutus-small.jpg\" alt=\"\" width=\"350 px\" />\r\n<p style=\"text-align: justify;\">With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus. This is our way of giving the customer the best ingredients for a well-functioning and healthy workforce.</p>\r\n<p style=\"text-align: justify;\">We provide catering in various events and occasions like Industrial catering, Birthday parties, Marriages, House warming, Picnic food, Corporate seminars etc. We cater both corporate events and private parties from 10 to 10000 people. Based on the theme, we can provide food for your event. Uses of finest ingredients as spices, vegetables, experienced chefs as long presence in market lead us to this mark today. NEB has extensive experience in the delivery of procurement services on behalf of our customers, utilizing a comprehensive set of best practice procurement processes and tools.</p>\r\n<p style=\"text-align: justify;\">Based on our comprehensive range of favourable procurement agreements with global and local providers we customise attractive individual catering solutions and concepts. Our wide range of suppliers guarantee consistently high quality products and on-time delivery. Taking these parameters into consideration, we are driven by efficiency and cost management to offer you more value for money.</p>\r\n<p style=\"text-align: justify;\">Our staffÃ¢â‚¬â„¢s planning and service made our goodwill and leave impression as delicious and memorable. NEB works on the requirements of customers and also we take care of their taste as per business, schedules, budgets and suggest them for cuisines etc.</p>\r\n[/section]", "About Us", "", "inherit", "open", "open", "", "2217-revision-v1", "", "", "2014-10-18 11:46:16", "2014-10-18 11:46:16", "", "2217", "http://hrd.softons.cu.cc/2217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2353", "1", "2014-10-18 11:49:25", "2014-10-18 11:49:25", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n[contact-form-7 id=\"2347\" title=\"Contact form 1\"]\r\n\r\n[/one_half]\r\n\r\n[/section]", "Get a Quote", "", "inherit", "open", "open", "", "2343-revision-v1", "", "", "2014-10-18 11:49:25", "2014-10-18 11:49:25", "", "2343", "http://hrd.softons.cu.cc/2343-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2354", "2", "2014-10-18 11:49:55", "2014-10-18 11:49:55", "", "about-us-small-img", "", "inherit", "open", "open", "", "about-us-small-img", "", "", "2014-10-18 11:49:55", "2014-10-18 11:49:55", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/about-us-small-img.png", "0", "attachment", "image/png", "0");
INSERT INTO `d1_posts` VALUES("2355", "2", "2014-10-18 11:50:52", "2014-10-18 11:50:52", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/aboutus1.jpg\" alt=\"\" />\r\n<p style=\"text-align: justify;\">I come from a line of NEB Catering family and have been in the catering business most of my life. NEB stands for Nanjundeshwara Bhavan where it was started by our grand father Mr.H.N.Ramaiah(Late) on 1935 at hosur. Later my father Mr.H.R.Sathyanarayana has taken over the family catering business over 30 years. Now, NEB Catering is running successfully under the guidance of Mr. H.S. Kasi Viswanath, B.Sc(Hotel and Catering Management). Almost, we have crossed 78 years in a branded name to establish ourselves firmly as one of the top-notch in the profession. While quality is our trademark, excellence in services and experience that is invaluable is what holds us apart from the rest.</p>\r\n<img class=\"alignright\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/about-us-small-img.png\" alt=\"\" width=\"350 px\" />\r\n<p style=\"text-align: justify;\">With our expertise and experience we know how much healthy, fresh and tasty food can influence work performance. Bearing that in mind, our competent chefs and in-house specialists take pride in creating nutritionally balanced and innovative menus. This is our way of giving the customer the best ingredients for a well-functioning and healthy workforce.</p>\r\n<p style=\"text-align: justify;\">We provide catering in various events and occasions like Industrial catering, Birthday parties, Marriages, House warming, Picnic food, Corporate seminars etc. We cater both corporate events and private parties from 10 to 10000 people. Based on the theme, we can provide food for your event. Uses of finest ingredients as spices, vegetables, experienced chefs as long presence in market lead us to this mark today. NEB has extensive experience in the delivery of procurement services on behalf of our customers, utilizing a comprehensive set of best practice procurement processes and tools.</p>\r\n<p style=\"text-align: justify;\">Based on our comprehensive range of favourable procurement agreements with global and local providers we customise attractive individual catering solutions and concepts. Our wide range of suppliers guarantee consistently high quality products and on-time delivery. Taking these parameters into consideration, we are driven by efficiency and cost management to offer you more value for money.</p>\r\n<p style=\"text-align: justify;\">Our staffÃ¢â‚¬â„¢s planning and service made our goodwill and leave impression as delicious and memorable. NEB works on the requirements of customers and also we take care of their taste as per business, schedules, budgets and suggest them for cuisines etc.</p>\r\n[/section]", "About Us", "", "inherit", "open", "open", "", "2217-revision-v1", "", "", "2014-10-18 11:50:52", "2014-10-18 11:50:52", "", "2217", "http://hrd.softons.cu.cc/2217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2356", "1", "2014-10-18 11:51:00", "2014-10-18 11:51:00", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n[three_fifth valign=\"top\" animation=\"none\"]\r\n<h3>Feel free to contact us...</h3>\r\n[contact-form-7 id=\"2347\" title=\"Contact form 1\"][/contact-form-7]\r\n\r\n[/three_fifth]\r\n\r\n[/section]", "Get a Quote", "", "inherit", "open", "open", "", "2343-revision-v1", "", "", "2014-10-18 11:51:00", "2014-10-18 11:51:00", "", "2343", "http://hrd.softons.cu.cc/2343-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2357", "1", "2014-10-18 11:51:54", "2014-10-18 11:51:54", " ", "", "", "publish", "open", "open", "", "2357", "", "", "2014-10-18 11:51:54", "2014-10-18 11:51:54", "", "0", "http://hrd.softons.cu.cc/?p=2357", "5", "nav_menu_item", "", "0");
INSERT INTO `d1_posts` VALUES("2358", "2", "2014-10-18 12:05:26", "2014-10-18 12:05:26", "", "Contact-us", "", "inherit", "open", "open", "", "contact-us-2", "", "", "2014-10-18 12:05:26", "2014-10-18 12:05:26", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Contact-us.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `d1_posts` VALUES("2359", "2", "2014-10-18 12:06:55", "2014-10-18 12:06:55", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Contact-us.jpg\" alt=\"\" />\r\n\r\n[three_fifth valign=\"top\" animation=\"none\"]\r\n<h3>Feel free to contact us...</h3>\r\n[contact-form-7 id=\"2347\" title=\"Contact form 1\"][/contact-form-7]\r\n\r\n[/three_fifth]\r\n\r\n[/section]", "Get a Quote", "", "inherit", "open", "open", "", "2343-revision-v1", "", "", "2014-10-18 12:06:55", "2014-10-18 12:06:55", "", "2343", "http://hrd.softons.cu.cc/2343-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2360", "2", "2014-10-18 12:12:43", "2014-10-18 12:12:43", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Contact-us.jpg\" alt=\"\" />\r\n\r\n[three_fifth valign=\"top\" animation=\"none\"]\r\n<h3>Feel free to contact us...</h3>\r\n[contact-form-7 id=\"2347\" title=\"Contact form 1\"][/contact-form-7]\r\n\r\n[/three_fifth]\r\n\r\n[two_fifth_last]\r\n\r\n[/two_fifth_last]\r\n\r\n[one_half valign=\"top\" animation=\"none\"]\r\n\r\n<strong>Contact Address</strong>\r\nNEB Catering Service,\r\n#M82A, Rainbow Gardens, TNHB Phase - VI, Opp Amma Hospital,\r\nBasthi Road,HOSUR - 635 109.\r\n\r\n[/one_half]\r\n\r\n[/section]", "Get a Quote", "", "inherit", "open", "open", "", "2343-revision-v1", "", "", "2014-10-18 12:12:43", "2014-10-18 12:12:43", "", "2343", "http://hrd.softons.cu.cc/2343-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2361", "2", "2014-10-18 12:14:48", "2014-10-18 12:14:48", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Contact-us.jpg\" alt=\"\" />\r\n\r\n[three_fifth valign=\"top\" animation=\"none\"]\r\n<h3>Feel free to contact us...</h3>\r\n[contact-form-7 id=\"2347\" title=\"Contact form 1\"][/contact-form-7]\r\n\r\n[/three_fifth]\r\n\r\n[two_fifth_last valign=\"top\" animation=\"none\"]\r\n\r\n<strong>Contact Address</strong>\r\nNEB Catering Service,\r\n#M82A, Rainbow Gardens, TNHB Phase - VI, Opp Amma Hospital,\r\nBasthi Road,HOSUR - 635 109.\r\n\r\n[/two_fifth_last]\r\n\r\n[/section]", "Get a Quote", "", "inherit", "open", "open", "", "2343-revision-v1", "", "", "2014-10-18 12:14:48", "2014-10-18 12:14:48", "", "2343", "http://hrd.softons.cu.cc/2343-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2362", "1", "2014-10-20 03:34:12", "2014-10-20 03:34:12", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Contact-us.jpg\" alt=\"\" />\r\n\r\n[three_fifth valign=\"top\" animation=\"none\"]\r\n<h3>Feel free to contact us...</h3>\r\n[contact-form-7 id=\"2347\" title=\"Contact form 1\"][/contact-form-7]\r\n\r\n[/three_fifth]\r\n\r\n[two_fifth_last valign=\"top\" animation=\"none\"]\r\n<h2>Office Location</h2>\r\nNEB Catering Service,\r\n\r\n#M82A, Rainbow Gardens,\r\n\r\nTNHB Phase - VI,\r\n\r\nOpp Amma Hospital,\r\n\r\nBasthi Road,\r\n\r\nHOSUR - 635 109.\r\n\r\n[/two_fifth_last]\r\n\r\n[/section]", "Get a Quote", "", "inherit", "open", "open", "", "2343-revision-v1", "", "", "2014-10-20 03:34:12", "2014-10-20 03:34:12", "", "2343", "http://hrd.softons.cu.cc/2343-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2363", "1", "2014-10-20 04:15:42", "2014-10-20 04:15:42", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\n\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Contact-us.jpg\" alt=\"\">\n\n[three_fifth valign=\"top\" animation=\"none\"]\n<h3>Feel free to contact us...</h3>\n[contact-form-7 id=\"2347\" title=\"Contact form 1\"][/contact-form-7]\n\n[/three_fifth]\n\n[two_fifth_last valign=\"top\" animation=\"none\"]\n<h3>Office Location</h3>\nNEB Catering Service,\n#M82A, Rainbow Gardens,\nTNHB Phase - VI,\nOpp Amma Hospital,\nBasthi Road,\nHOSUR - 635 109.<br/>\nPhone No : +91 93623 12841\nEmail Id : nebcatering@gmail.com<br/>\n\n\n[/two_fifth_last]\n\n[/section]", "Get a Quote", "", "inherit", "open", "open", "", "2343-autosave-v1", "", "", "2014-10-20 04:15:42", "2014-10-20 04:15:42", "", "2343", "http://hrd.softons.cu.cc/2343-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2364", "1", "2014-10-20 03:35:37", "2014-10-20 03:35:37", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Contact-us.jpg\" alt=\"\">\r\n\r\n[three_fifth valign=\"top\" animation=\"none\"]\r\n<h3>Feel free to contact us...</h3>\r\n[contact-form-7 id=\"2347\" title=\"Contact form 1\"][/contact-form-7]\r\n\r\n[/three_fifth]\r\n\r\n[two_fifth_last valign=\"top\" animation=\"none\"]\r\n<h3>Office Location</h3>\r\nNEB Catering Service,\r\n#M82A, Rainbow Gardens,\r\nTNHB Phase - VI,\r\nOpp Amma Hospital,\r\nBasthi Road,\r\nHOSUR - 635 109.\r\n\r\n[/two_fifth_last]\r\n\r\n[/section]", "Get a Quote", "", "inherit", "open", "open", "", "2343-revision-v1", "", "", "2014-10-20 03:35:37", "2014-10-20 03:35:37", "", "2343", "http://hrd.softons.cu.cc/2343-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2365", "1", "2014-10-20 04:15:43", "2014-10-20 04:15:43", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Contact-us.jpg\" alt=\"\">\r\n\r\n[three_fifth valign=\"top\" animation=\"none\"]\r\n<h3>Feel free to contact us...</h3>\r\n[contact-form-7 id=\"2347\" title=\"Contact form 1\"][/contact-form-7]\r\n\r\n[/three_fifth]\r\n\r\n[two_fifth_last valign=\"top\" animation=\"none\"]\r\n<h3>Office Location</h3>\r\nNEB Catering Service,\r\n#M82A, Rainbow Gardens,\r\nTNHB Phase - VI,\r\nOpp Amma Hospital,\r\nBasthi Road,\r\nHOSUR - 635 109.<br/>\r\nPhone No : +91 93623 12841\r\nEmail Id : nebcatering@gmail.com<br/>\r\n\r\n\r\n[/two_fifth_last]\r\n\r\n[/section]", "Get a Quote", "", "inherit", "open", "open", "", "2343-revision-v1", "", "", "2014-10-20 04:15:43", "2014-10-20 04:15:43", "", "2343", "http://hrd.softons.cu.cc/2343-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2366", "1", "2014-10-20 04:17:27", "2014-10-20 04:17:27", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Contact-us.jpg\" alt=\"\">\r\n\r\n[three_fifth valign=\"top\" animation=\"none\"]\r\n<h3>Feel free to contact us...</h3>\r\n[contact-form-7 id=\"2347\" title=\"Contact form 1\"][/contact-form-7]\r\n\r\n[/three_fifth]\r\n\r\n[two_fifth_last valign=\"top\" animation=\"none\"]\r\n<h3>Office Location</h3>\r\nNEB Catering Service,\r\n#M82A, Rainbow Gardens,\r\nTNHB Phase - VI,\r\nOpp Amma Hospital,\r\nBasthi Road,\r\nHOSUR - 635 109.<br/>\r\nPhone No : +91 93623 12841<br/>\r\nEmail Id : nebcatering@gmail.com<br/>\r\n\r\n\r\n[/two_fifth_last]\r\n\r\n[/section]", "Get a Quote", "", "inherit", "open", "open", "", "2343-revision-v1", "", "", "2014-10-20 04:17:27", "2014-10-20 04:17:27", "", "2343", "http://hrd.softons.cu.cc/2343-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2371", "1", "2014-10-28 04:36:39", "2014-10-28 04:36:39", "", "350x80", "", "inherit", "open", "open", "", "350x80-4", "", "", "2014-10-28 04:36:39", "2014-10-28 04:36:39", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/350x803.png", "0", "attachment", "image/png", "0");
INSERT INTO `d1_posts` VALUES("2372", "1", "2014-10-28 04:41:50", "2014-10-28 04:41:50", "", "Mobile-logo", "", "inherit", "open", "open", "", "mobile-logo-2", "", "", "2014-10-28 04:41:50", "2014-10-28 04:41:50", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Mobile-logo1.png", "0", "attachment", "image/png", "0");
INSERT INTO `d1_posts` VALUES("2373", "1", "2014-10-28 04:44:11", "2014-10-28 04:44:11", "", "350x80", "", "inherit", "open", "open", "", "350x80-5", "", "", "2014-10-28 04:44:11", "2014-10-28 04:44:11", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/350x804.png", "0", "attachment", "image/png", "0");
INSERT INTO `d1_posts` VALUES("2374", "1", "2014-10-28 04:44:35", "2014-10-28 04:44:35", "", "Mobile-logo", "", "inherit", "open", "open", "", "mobile-logo-3", "", "", "2014-10-28 04:44:35", "2014-10-28 04:44:35", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Mobile-logo2.png", "0", "attachment", "image/png", "0");
INSERT INTO `d1_posts` VALUES("2375", "1", "2014-10-28 10:57:17", "2014-10-28 10:57:17", "", "Menu-Neb", "", "inherit", "open", "open", "", "menu-neb-3", "", "", "2014-10-28 10:57:17", "2014-10-28 10:57:17", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Menu-Neb2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `d1_posts` VALUES("2376", "1", "2014-10-28 10:59:26", "2014-10-28 10:59:26", "<p>[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]</p>\n<h3 style=\"text-align: center;\"><strong>NEB\'s Trendy &amp; Traditional Menus</strong></h3>\n<p style=\"text-align: justify;\">Beyond our impressive menus, we are proficient in handling all aspects of your events. Our highly experienced catering staff permits us to arrange and customize elegant functions and parties to suit your individual style.</p>\n<p><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/NEB_Menu.jpg\" alt=\"\" /></p>\n<p>[/section]</p>\n", "Our Catalog", "", "inherit", "open", "open", "", "2307-autosave-v1", "", "", "2014-10-28 10:59:26", "2014-10-28 10:59:26", "", "2307", "http://hrd.softons.cu.cc/2307-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2377", "1", "2014-10-28 11:00:42", "2014-10-28 11:00:42", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<h3 style=\"text-align: center;\"><strong>NEB\'s Trendy &amp; Traditional Menus</strong></h3>\r\n<p style=\"text-align: justify;\">Beyond our impressive menus, we are proficient in handling all aspects of your events. Our highly experienced catering staff permits us to arrange and customize elegant functions and parties to suit your individual style.</p>\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Menu-Neb2.jpg\" alt=\"\" />\r\n\r\n[/section]", "Our Catalog", "", "inherit", "open", "open", "", "2307-revision-v1", "", "", "2014-10-28 11:00:42", "2014-10-28 11:00:42", "", "2307", "http://hrd.softons.cu.cc/2307-revision-v1/", "0", "revision", "", "0");
INSERT INTO `d1_posts` VALUES("2378", "1", "2014-10-30 04:05:27", "2014-10-30 04:05:27", "", "Menu-Neb", "", "inherit", "open", "open", "", "menu-neb-4", "", "", "2014-10-30 04:05:27", "2014-10-30 04:05:27", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Menu-Neb3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `d1_posts` VALUES("2379", "1", "2014-10-30 04:06:28", "2014-10-30 04:06:28", "", "Menu-Neb", "", "inherit", "open", "open", "", "menu-neb-5", "", "", "2014-10-30 04:06:28", "2014-10-30 04:06:28", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Menu-Neb4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `d1_posts` VALUES("2380", "1", "2014-10-30 04:07:34", "2014-10-30 04:07:34", "[section background_repeat=\"repeat\" background_position=\"center top\" background_attachment=\"static\" background_scroll=\"none\"]\r\n<h3 style=\"text-align: center;\"><strong>NEB\'s Trendy &amp; Traditional Menus</strong></h3>\r\n<p style=\"text-align: justify;\">Beyond our impressive menus, we are proficient in handling all aspects of your events. Our highly experienced catering staff permits us to arrange and customize elegant functions and parties to suit your individual style.</p>\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/10/Menu-Neb4.jpg\" alt=\"\" />\r\n\r\n[/section]", "Our Catalog", "", "inherit", "open", "open", "", "2307-revision-v1", "", "", "2014-10-30 04:07:34", "2014-10-30 04:07:34", "", "2307", "http://hrd.softons.cu.cc/2307-revision-v1/", "0", "revision", "", "0");

/* INSERT TABLE DATA: d1_revslider_css */
INSERT INTO `d1_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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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)\"}");
INSERT INTO `d1_revslider_css` VALUES("15", ".tp-caption.black", NULL, NULL, "{\"color\":\"#000\",\"text-shadow\":\"none\"}");
INSERT INTO `d1_revslider_css` VALUES("16", ".tp-caption.noshadow", NULL, NULL, "{\"text-shadow\":\"none\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("45", ".tp-caption.roundedimage", NULL, NULL, "{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");
INSERT INTO `d1_revslider_css` VALUES("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\"}");

/* INSERT TABLE DATA: d1_revslider_sliders */
INSERT INTO `d1_revslider_sliders` VALUES("1", "Big Slider", "big-slider", "{\"title\":\"Big Slider\",\"alias\":\"big-slider\",\"shortcode\":\"[rev_slider big-slider]\",\"slider_type\":\"fullwidth\",\"fullscreen_offset_container\":\"\",\"width\":\"1024\",\"height\":\"620\",\"responsitive_w1\":\"940\",\"responsitive_sw1\":\"770\",\"responsitive_w2\":\"780\",\"responsitive_sw2\":\"500\",\"responsitive_w3\":\"510\",\"responsitive_sw3\":\"310\",\"responsitive_w4\":\"\",\"responsitive_sw4\":\"\",\"responsitive_w5\":\"\",\"responsitive_sw5\":\"\",\"responsitive_w6\":\"\",\"responsitive_sw6\":\"\",\"delay\":\"4000\",\"shuffle\":\"off\",\"lazy_load\":\"off\",\"load_googlefont\":\"false\",\"google_font\":\"PT+Sans+Narrow:400,700\",\"stop_slider\":\"off\",\"stop_after_loops\":\"0\",\"stop_at_slide\":\"2\",\"position\":\"center\",\"margin_top\":\"0\",\"margin_bottom\":\"0\",\"margin_left\":\"0\",\"margin_right\":\"0\",\"shadow_type\":\"0\",\"show_timerbar\":\"bottom\",\"background_color\":\"#333333\",\"padding\":\"0\",\"show_background_image\":\"false\",\"background_image\":\"http:\\/\\/design1.softons.in\\/wp-content\\/\",\"touchenabled\":\"on\",\"stop_on_hover\":\"on\",\"navigaion_type\":\"bullet\",\"navigation_arrows\":\"solo\",\"navigation_style\":\"round\",\"navigaion_always_on\":\"true\",\"hide_thumbs\":\"200\",\"navigaion_align_hor\":\"center\",\"navigaion_align_vert\":\"bottom\",\"navigaion_offset_hor\":\"0\",\"navigaion_offset_vert\":\"20\",\"leftarrow_align_hor\":\"right\",\"leftarrow_align_vert\":\"bottom\",\"leftarrow_offset_hor\":\"62\",\"leftarrow_offset_vert\":\"20\",\"rightarrow_align_hor\":\"right\",\"rightarrow_align_vert\":\"bottom\",\"rightarrow_offset_hor\":\"20\",\"rightarrow_offset_vert\":\"20\",\"thumb_width\":\"100\",\"thumb_height\":\"50\",\"thumb_amount\":\"5\",\"hide_slider_under\":\"0\",\"hide_defined_layers_under\":\"0\",\"hide_all_layers_under\":\"0\",\"start_with_slide\":\"1\",\"first_transition_type\":\"fade\",\"first_transition_duration\":\"300\",\"first_transition_slot_amount\":\"7\",\"jquery_noconflict\":\"on\",\"js_to_body\":\"false\",\"output_type\":\"none\"}");
INSERT INTO `d1_revslider_sliders` VALUES("2", "Content Slider 1", "content-slider-1", "{\"title\":\"Content Slider 1\",\"alias\":\"content-slider-1\",\"shortcode\":\"[rev_slider content-slider-1]\",\"slider_type\":\"fullwidth\",\"width\":\"968\",\"height\":\"340\",\"responsitive_w1\":\"968\",\"responsitive_sw1\":\"968\",\"responsitive_w2\":\"\",\"responsitive_sw2\":\"\",\"responsitive_w3\":\"\",\"responsitive_sw3\":\"\",\"responsitive_w4\":\"\",\"responsitive_sw4\":\"\",\"responsitive_w5\":\"\",\"responsitive_sw5\":\"\",\"responsitive_w6\":\"\",\"responsitive_sw6\":\"\",\"delay\":\"9000\",\"touchenabled\":\"on\",\"stop_on_hover\":\"on\",\"shuffle\":\"off\",\"load_googlefont\":\"false\",\"google_font\":\"PT+Sans+Narrow:400,700\",\"stop_slider\":\"off\",\"stop_after_loops\":\"0\",\"stop_at_slide\":\"2\",\"position\":\"center\",\"margin_top\":\"0\",\"margin_bottom\":\"0\",\"margin_left\":\"0\",\"margin_right\":\"0\",\"shadow_type\":\"0\",\"show_timerbar\":\"false\",\"timebar_position\":\"top\",\"background_color\":\"\",\"padding\":\"\",\"show_background_image\":\"false\",\"background_image\":\"http:\\/\\/design1.softons.in\\/wp-content\\/\",\"navigaion_type\":\"none\",\"navigation_arrows\":\"nexttobullets\",\"navigation_style\":\"round\",\"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\",\"hide_slider_under\":\"0\",\"hide_defined_layers_under\":\"0\",\"hide_all_layers_under\":\"0\",\"start_with_slide\":\"1\",\"first_transition_type\":\"fade\",\"first_transition_duration\":\"300\",\"first_transition_slot_amount\":\"7\",\"jquery_noconflict\":\"on\",\"js_to_body\":\"false\",\"output_type\":\"none\"}");
INSERT INTO `d1_revslider_sliders` VALUES("3", "Content Slider 2", "content-slider-2", "{\"title\":\"Content Slider 2\",\"alias\":\"content-slider-2\",\"shortcode\":\"[rev_slider content-slider-2]\",\"slider_type\":\"fullwidth\",\"width\":\"968\",\"height\":\"340\",\"responsitive_w1\":\"968\",\"responsitive_sw1\":\"968\",\"responsitive_w2\":\"\",\"responsitive_sw2\":\"\",\"responsitive_w3\":\"\",\"responsitive_sw3\":\"\",\"responsitive_w4\":\"\",\"responsitive_sw4\":\"\",\"responsitive_w5\":\"\",\"responsitive_sw5\":\"\",\"responsitive_w6\":\"\",\"responsitive_sw6\":\"\",\"delay\":\"9000\",\"touchenabled\":\"on\",\"stop_on_hover\":\"on\",\"shuffle\":\"off\",\"load_googlefont\":\"false\",\"google_font\":\"PT+Sans+Narrow:400,700\",\"stop_slider\":\"off\",\"stop_after_loops\":\"0\",\"stop_at_slide\":\"2\",\"position\":\"center\",\"margin_top\":\"0\",\"margin_bottom\":\"0\",\"margin_left\":\"0\",\"margin_right\":\"0\",\"shadow_type\":\"0\",\"show_timerbar\":\"false\",\"timebar_position\":\"top\",\"background_color\":\"\",\"padding\":\"\",\"show_background_image\":\"false\",\"background_image\":\"http:\\/\\/design1.softons.in\\/wp-content\\/\",\"navigaion_type\":\"none\",\"navigation_arrows\":\"nexttobullets\",\"navigation_style\":\"round\",\"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\",\"hide_slider_under\":\"0\",\"hide_defined_layers_under\":\"0\",\"hide_all_layers_under\":\"0\",\"start_with_slide\":\"1\",\"first_transition_type\":\"fade\",\"first_transition_duration\":\"300\",\"first_transition_slot_amount\":\"7\",\"jquery_noconflict\":\"on\",\"js_to_body\":\"false\",\"output_type\":\"none\"}");
INSERT INTO `d1_revslider_sliders` VALUES("4", "Home Slider 1", "home-slider-1", "{\"title\":\"Home Slider 1\",\"alias\":\"home-slider-1\",\"shortcode\":\"[rev_slider home-slider-1]\",\"slider_type\":\"fullwidth\",\"fullscreen_offset_container\":\"\",\"width\":\"1024\",\"height\":\"420\",\"responsitive_w1\":\"940\",\"responsitive_sw1\":\"770\",\"responsitive_w2\":\"780\",\"responsitive_sw2\":\"500\",\"responsitive_w3\":\"510\",\"responsitive_sw3\":\"310\",\"responsitive_w4\":\"\",\"responsitive_sw4\":\"\",\"responsitive_w5\":\"\",\"responsitive_sw5\":\"\",\"responsitive_w6\":\"\",\"responsitive_sw6\":\"\",\"delay\":\"9000\",\"shuffle\":\"off\",\"lazy_load\":\"off\",\"load_googlefont\":\"false\",\"google_font\":\"PT+Sans+Narrow:400,700\",\"stop_slider\":\"off\",\"stop_after_loops\":\"0\",\"stop_at_slide\":\"1\",\"position\":\"center\",\"margin_top\":\"0\",\"margin_bottom\":\"0\",\"margin_left\":\"0\",\"margin_right\":\"0\",\"shadow_type\":\"0\",\"show_timerbar\":\"bottom\",\"background_color\":\"#f2f2f2\",\"padding\":\"0\",\"show_background_image\":\"false\",\"background_image\":\"http:\\/\\/design1.softons.in\\/wp-content\\/\",\"touchenabled\":\"on\",\"stop_on_hover\":\"on\",\"navigaion_type\":\"bullet\",\"navigation_arrows\":\"solo\",\"navigation_style\":\"round\",\"navigaion_always_on\":\"true\",\"hide_thumbs\":\"200\",\"navigaion_align_hor\":\"center\",\"navigaion_align_vert\":\"bottom\",\"navigaion_offset_hor\":\"0\",\"navigaion_offset_vert\":\"20\",\"leftarrow_align_hor\":\"right\",\"leftarrow_align_vert\":\"bottom\",\"leftarrow_offset_hor\":\"62\",\"leftarrow_offset_vert\":\"20\",\"rightarrow_align_hor\":\"right\",\"rightarrow_align_vert\":\"bottom\",\"rightarrow_offset_hor\":\"20\",\"rightarrow_offset_vert\":\"20\",\"thumb_width\":\"100\",\"thumb_height\":\"50\",\"thumb_amount\":\"5\",\"hide_slider_under\":\"0\",\"hide_defined_layers_under\":\"0\",\"hide_all_layers_under\":\"0\",\"start_with_slide\":\"1\",\"first_transition_active\":\"false\",\"first_transition_type\":\"fade\",\"first_transition_duration\":\"300\",\"first_transition_slot_amount\":\"7\",\"jquery_noconflict\":\"on\",\"js_to_body\":\"false\",\"output_type\":\"none\"}");
INSERT INTO `d1_revslider_sliders` VALUES("5", "Transparent Slider", "transparent-slider", "{\"title\":\"Transparent Slider\",\"alias\":\"transparent-slider\",\"shortcode\":\"[rev_slider transparent-slider]\",\"slider_type\":\"fullwidth\",\"fullscreen_offset_container\":\"\",\"width\":\"1024\",\"height\":\"400\",\"responsitive_w1\":\"\",\"responsitive_sw1\":\"\",\"responsitive_w2\":\"\",\"responsitive_sw2\":\"\",\"responsitive_w3\":\"\",\"responsitive_sw3\":\"\",\"responsitive_w4\":\"\",\"responsitive_sw4\":\"\",\"responsitive_w5\":\"\",\"responsitive_sw5\":\"\",\"responsitive_w6\":\"\",\"responsitive_sw6\":\"\",\"delay\":\"9000\",\"shuffle\":\"off\",\"lazy_load\":\"off\",\"load_googlefont\":\"false\",\"google_font\":\"PT+Sans+Narrow:400,700\",\"stop_slider\":\"off\",\"stop_after_loops\":\"0\",\"stop_at_slide\":\"2\",\"position\":\"center\",\"margin_top\":\"0\",\"margin_bottom\":\"0\",\"margin_left\":\"0\",\"margin_right\":\"0\",\"shadow_type\":\"0\",\"show_timerbar\":\"bottom\",\"background_color\":\"\",\"padding\":\"\",\"show_background_image\":\"false\",\"background_image\":\"http:\\/\\/design1.softons.in\\/wp-content\\/\",\"touchenabled\":\"on\",\"stop_on_hover\":\"on\",\"navigaion_type\":\"bullet\",\"navigation_arrows\":\"solo\",\"navigation_style\":\"round\",\"navigaion_always_on\":\"true\",\"hide_thumbs\":\"200\",\"navigaion_align_hor\":\"center\",\"navigaion_align_vert\":\"bottom\",\"navigaion_offset_hor\":\"0\",\"navigaion_offset_vert\":\"20\",\"leftarrow_align_hor\":\"right\",\"leftarrow_align_vert\":\"bottom\",\"leftarrow_offset_hor\":\"62\",\"leftarrow_offset_vert\":\"20\",\"rightarrow_align_hor\":\"right\",\"rightarrow_align_vert\":\"bottom\",\"rightarrow_offset_hor\":\"20\",\"rightarrow_offset_vert\":\"20\",\"thumb_width\":\"100\",\"thumb_height\":\"50\",\"thumb_amount\":\"5\",\"hide_slider_under\":\"0\",\"hide_defined_layers_under\":\"0\",\"hide_all_layers_under\":\"0\",\"start_with_slide\":\"1\",\"first_transition_type\":\"fade\",\"first_transition_duration\":\"300\",\"first_transition_slot_amount\":\"7\",\"jquery_noconflict\":\"on\",\"js_to_body\":\"false\",\"output_type\":\"none\"}");

/* INSERT TABLE DATA: d1_revslider_slides */
INSERT INTO `d1_revslider_slides` VALUES("1", "1", "1", "{\"title\":\"Slide\",\"state\":\"published\",\"slide_transition\":\"random\",\"0\":\"Choose Image\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"fullwidth_centering\":\"true\",\"background_type\":\"image\",\"image_id\":\"2251\",\"slide_bg_color\":\"#E7E7E7\",\"image\":\"http:\\/\\/neb.softonssoft.cu.cc\\/wp-content\\/uploads\\/2014\\/10\\/Home-slide1.jpg\",\"date_from\":\"\",\"date_to\":\"\",\"0\":\"Remove\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"4000\",\"kb_easing\":\"Linear.easeNone\"}", "[]");
INSERT INTO `d1_revslider_slides` VALUES("2", "1", "2", "{\"title\":\"Slide\",\"state\":\"published\",\"slide_transition\":\"random\",\"0\":\"Choose Image\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"fullwidth_centering\":\"true\",\"background_type\":\"image\",\"image_id\":\"2252\",\"slide_bg_color\":\"#E7E7E7\",\"image\":\"http:\\/\\/neb.softonssoft.cu.cc\\/wp-content\\/uploads\\/2014\\/10\\/Home-slide2.jpg\",\"date_from\":\"\",\"date_to\":\"\",\"0\":\"Remove\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"4000\",\"kb_easing\":\"Linear.easeNone\"}", "[]");
INSERT INTO `d1_revslider_slides` VALUES("3", "2", "1", "{\"title\":\"Slide\",\"state\":\"published\",\"slide_transition\":\"fade\",\"slot_amount\":\"7\",\"transition_rotation\":\"0\",\"transition_duration\":\"100\",\"delay\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"enable_video\":\"false\",\"video_id\":\"\",\"video_autoplay\":\"true\",\"slide_thumb\":\"\",\"0\":\"Choose Image\",\"fullwidth_centering\":\"true\",\"background_type\":\"trans\",\"slide_bg_color\":\"#E7E7E7\",\"image\":null}", "[{\"style\":\"\",\"text\":\"Image 2\",\"type\":\"image\",\"image_url\":\"http://hrd.softons.cu.cc/wp-content//uploads/2013/06/revlislider_content_1_obj2_v01.png\",\"left\":252,\"top\":55,\"animation\":\"randomrotate\",\"easing\":\"easeInOutBack\",\"speed\":500,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"time\":800,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":\"0\",\"endTimeFinal\":8500,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8200},{\"style\":\"\",\"text\":\"Image 4\",\"type\":\"image\",\"image_url\":\"http://hrd.softons.cu.cc/wp-content//uploads/2013/06/revlislider_content_1_obj4_v01.png\",\"left\":704,\"top\":55,\"animation\":\"randomrotate\",\"easing\":\"easeInOutBack\",\"speed\":500,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"time\":1100,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":\"1\",\"endTimeFinal\":8500,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":7900},{\"style\":\"\",\"text\":\"Image 3\",\"type\":\"image\",\"image_url\":\"http://hrd.softons.cu.cc/wp-content//uploads/2013/06/revlislider_content_1_obj3_v01.png\",\"left\":448,\"top\":26,\"animation\":\"randomrotate\",\"easing\":\"easeInOutBack\",\"speed\":500,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"time\":1400,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":\"2\",\"endTimeFinal\":8500,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":7600},{\"style\":\"\",\"text\":\"Image 1\",\"type\":\"image\",\"image_url\":\"http://hrd.softons.cu.cc/wp-content//uploads/2013/06/revlislider_content_1_obj1_v011.png\",\"left\":28,\"top\":8,\"animation\":\"lfr\",\"easing\":\"easeInOutCirc\",\"speed\":500,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"time\":100,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":\"3\",\"endTimeFinal\":8500,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8900}]");
INSERT INTO `d1_revslider_slides` VALUES("4", "3", "1", "{\"title\":\"Slide\",\"state\":\"published\",\"slide_transition\":\"fade\",\"slot_amount\":\"7\",\"transition_rotation\":\"0\",\"transition_duration\":\"100\",\"delay\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"enable_video\":\"false\",\"video_id\":\"\",\"video_autoplay\":\"true\",\"slide_thumb\":\"\",\"0\":\"Choose Image\",\"fullwidth_centering\":\"true\",\"background_type\":\"trans\",\"slide_bg_color\":\"#E7E7E7\",\"image\":null}", "[{\"style\":\"\",\"text\":\"1n\",\"type\":\"image\",\"image_url\":\"http://hrd.softons.cu.cc/wp-content//uploads/2013/06/revlislider_content_2_obj2_v01.png\",\"left\":52,\"top\":55,\"animation\":\"randomrotate\",\"easing\":\"easeInOutBack\",\"speed\":500,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"time\":800,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":\"0\",\"endTimeFinal\":8500,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8200},{\"style\":\"\",\"text\":\"3\",\"type\":\"image\",\"image_url\":\"http://hrd.softons.cu.cc/wp-content//uploads/2013/06/revlislider_content_2_obj4_v01.png\",\"left\":504,\"top\":55,\"animation\":\"randomrotate\",\"easing\":\"easeInOutBack\",\"speed\":500,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"time\":1100,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":\"1\",\"endTimeFinal\":8500,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":7900},{\"style\":\"\",\"text\":\"2\",\"type\":\"image\",\"image_url\":\"http://hrd.softons.cu.cc/wp-content//uploads/2013/06/revlislider_content_2_obj3_v01.png\",\"left\":248,\"top\":26,\"animation\":\"randomrotate\",\"easing\":\"easeInOutBack\",\"speed\":500,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"time\":1400,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":\"2\",\"endTimeFinal\":8500,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":7600},{\"style\":\"\",\"text\":\"Woman\",\"type\":\"image\",\"image_url\":\"http://hrd.softons.cu.cc/wp-content//uploads/2013/06/revlislider_content_2_obj1_v01.png\",\"left\":561,\"top\":4,\"animation\":\"lfl\",\"easing\":\"easeInOutCirc\",\"speed\":500,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"time\":100,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":\"3\",\"endTimeFinal\":8500,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8900}]");
INSERT INTO `d1_revslider_slides` VALUES("5", "4", "1", "{\"title\":\"Slide\",\"state\":\"published\",\"slide_transition\":\"slotzoom-vertical\",\"0\":\"Choose Image\",\"slot_amount\":\"7\",\"transition_rotation\":\"0\",\"transition_duration\":\"300\",\"delay\":\"5000\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"fullwidth_centering\":\"true\",\"background_type\":\"image\",\"image_id\":\"\",\"slide_bg_color\":\"#E7E7E7\",\"image\":null}", "[{\"text\":\"Just Check All Demos\",\"type\":\"text\",\"left\":28,\"top\":260,\"animation\":\"lfl\",\"easing\":\"easeOutExpo\",\"speed\":300,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"style\":\"g1-layer-medium-black\",\"time\":1700,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":\"0\",\"endTimeFinal\":4700,\"endSpeedFinal\":300,\"realEndTime\":5000,\"timeLast\":3600,\"align_hor\":\"left\",\"align_vert\":\"top\",\"resizeme\":false,\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},{\"style\":\"\",\"text\":\"Womann\",\"type\":\"image\",\"image_url\":\"http://hrd.softons.cu.cc/wp-content//uploads/2013/04/rev_slide_1_obj_1_v01.png\",\"left\":540,\"top\":0,\"animation\":\"lfr\",\"easing\":\"easeOutExpo\",\"speed\":500,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"time\":500,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":\"1\",\"endTimeFinal\":4500,\"endSpeedFinal\":300,\"realEndTime\":5000,\"timeLast\":4500,\"align_hor\":\"left\",\"align_vert\":\"top\",\"resizeme\":\"\",\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},{\"text\":\"Flexible Theme\",\"type\":\"text\",\"left\":28,\"top\":168,\"animation\":\"lfl\",\"easing\":\"easeOutExpo\",\"speed\":300,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"style\":\"g1-layer-large-white\",\"time\":1400,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":\"2\",\"endTimeFinal\":4700,\"endSpeedFinal\":300,\"realEndTime\":5000,\"timeLast\":3900,\"align_hor\":\"left\",\"align_vert\":\"top\",\"resizeme\":false,\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},{\"text\":\"The Most\",\"type\":\"text\",\"left\":28,\"top\":104,\"animation\":\"lfl\",\"easing\":\"easeOutExpo\",\"speed\":300,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"g1-layer-medium-white\",\"time\":1100,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":3,\"endTimeFinal\":4700,\"endSpeedFinal\":300,\"realEndTime\":5000,\"timeLast\":3900}]");
INSERT INTO `d1_revslider_slides` VALUES("6", "4", "2", "{\"title\":\"Slide\",\"state\":\"published\",\"slide_transition\":\"papercut\",\"0\":\"Choose Image\",\"slot_amount\":\"7\",\"transition_rotation\":\"999\",\"transition_duration\":\"300\",\"delay\":\"6800\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"fullwidth_centering\":\"true\",\"background_type\":\"image\",\"image_id\":\"\",\"slide_bg_color\":\"#E7E7E7\",\"image\":null}", "[{\"text\":\"MetroMenus\",\"type\":\"text\",\"left\":448,\"top\":144,\"animation\":\"lft\",\"easing\":\"easeOutBack\",\"speed\":300,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"style\":\"g1-layer-large-white\",\"time\":950,\"endtime\":\"2650\",\"endspeed\":300,\"endanimation\":\"ltr\",\"endeasing\":\"nothing\",\"serial\":\"0\",\"endTimeFinal\":2650,\"endSpeedFinal\":300,\"realEndTime\":2950,\"timeLast\":2000,\"align_hor\":\"left\",\"align_vert\":\"top\",\"resizeme\":false,\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},{\"text\":\"With Over 360 Icons Available\",\"type\":\"text\",\"left\":449,\"top\":238,\"animation\":\"lfb\",\"easing\":\"easeOutBack\",\"speed\":300,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"style\":\"g1-layer-medium-black\",\"time\":1100,\"endtime\":\"2800\",\"endspeed\":300,\"endanimation\":\"ltr\",\"endeasing\":\"nothing\",\"serial\":\"1\",\"endTimeFinal\":2800,\"endSpeedFinal\":300,\"realEndTime\":3100,\"timeLast\":2000,\"align_hor\":\"left\",\"align_vert\":\"top\",\"resizeme\":false,\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},{\"text\":\"Design Audits\",\"type\":\"text\",\"left\":449,\"top\":144,\"animation\":\"lfl\",\"easing\":\"easeOutBack\",\"speed\":300,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"style\":\"g1-layer-large-white\",\"time\":2950,\"endtime\":\"4650\",\"endspeed\":300,\"endanimation\":\"ltt\",\"endeasing\":\"nothing\",\"serial\":\"2\",\"endTimeFinal\":4650,\"endSpeedFinal\":300,\"realEndTime\":4950,\"timeLast\":2000,\"align_hor\":\"left\",\"align_vert\":\"top\",\"resizeme\":false,\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},{\"text\":\"Completely FREE!\",\"type\":\"text\",\"left\":447,\"top\":238,\"animation\":\"lfl\",\"easing\":\"easeOutBack\",\"speed\":300,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"style\":\"g1-layer-medium-black\",\"time\":3100,\"endtime\":\"4800\",\"endspeed\":300,\"endanimation\":\"ltb\",\"endeasing\":\"nothing\",\"serial\":\"3\",\"endTimeFinal\":4800,\"endSpeedFinal\":300,\"realEndTime\":5100,\"timeLast\":2000,\"align_hor\":\"left\",\"align_vert\":\"top\",\"resizeme\":false,\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},{\"text\":\"Video Tutorials\",\"type\":\"text\",\"left\":450,\"top\":143,\"animation\":\"lfr\",\"easing\":\"easeOutBack\",\"speed\":300,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"style\":\"g1-layer-large-white\",\"time\":4950,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":\"4\",\"endTimeFinal\":6500,\"endSpeedFinal\":300,\"realEndTime\":6800,\"timeLast\":1850,\"align_hor\":\"left\",\"align_vert\":\"top\",\"resizeme\":false,\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},{\"text\":\"An Easy Walkthrough\",\"type\":\"text\",\"left\":448,\"top\":238,\"animation\":\"lfr\",\"easing\":\"easeOutBack\",\"speed\":300,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"style\":\"g1-layer-medium-black\",\"time\":5100,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"ltt\",\"endeasing\":\"nothing\",\"serial\":\"5\",\"endTimeFinal\":6500,\"endSpeedFinal\":300,\"realEndTime\":6800,\"timeLast\":1700,\"align_hor\":\"left\",\"align_vert\":\"top\",\"resizeme\":false,\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},{\"style\":\"\",\"text\":\"Phonen\",\"type\":\"image\",\"image_url\":\"http://hrd.softons.cu.cc/wp-content//uploads/2013/06/rev_slider_2_obj_1_v01.png\",\"left\":0,\"top\":30,\"animation\":\"lfl\",\"easing\":\"easeOutExpo\",\"speed\":300,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"time\":500,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":\"6\",\"endTimeFinal\":6500,\"endSpeedFinal\":300,\"realEndTime\":6800,\"timeLast\":6300,\"align_hor\":\"left\",\"align_vert\":\"top\",\"resizeme\":\"\",\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},{\"style\":\"\",\"text\":\"Icon 1n\",\"type\":\"image\",\"image_url\":\"http://hrd.softons.cu.cc/wp-content//uploads/2013/06/rev_slider_2_obj_2_v01.png\",\"left\":218,\"top\":150,\"animation\":\"sfb\",\"easing\":\"easeOutBack\",\"speed\":300,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"time\":800,\"endtime\":\"2500\",\"endspeed\":300,\"endanimation\":\"stt\",\"endeasing\":\"nothing\",\"serial\":\"7\",\"endTimeFinal\":2500,\"endSpeedFinal\":300,\"realEndTime\":2800,\"timeLast\":2000,\"align_hor\":\"left\",\"align_vert\":\"top\",\"resizeme\":\"\",\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},{\"style\":\"\",\"text\":\"Icon 2n\",\"type\":\"image\",\"image_url\":\"http://hrd.softons.cu.cc/wp-content//uploads/2013/06/rev_slider_2_obj_3_v01.png\",\"left\":218,\"top\":150,\"animation\":\"sfb\",\"easing\":\"easeOutBack\",\"speed\":300,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"time\":2800,\"endtime\":\"4500\",\"endspeed\":300,\"endanimation\":\"stt\",\"endeasing\":\"nothing\",\"serial\":\"8\",\"endTimeFinal\":4500,\"endSpeedFinal\":300,\"realEndTime\":4800,\"timeLast\":2000,\"align_hor\":\"left\",\"align_vert\":\"top\",\"resizeme\":false,\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},{\"style\":\"\",\"text\":\"Icon 3n\",\"type\":\"image\",\"image_url\":\"http://hrd.softons.cu.cc/wp-content//uploads/2013/06/rev_slider_2_obj_4_v01.png\",\"left\":218,\"top\":150,\"animation\":\"sfb\",\"easing\":\"easeOutBack\",\"speed\":300,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"time\":4800,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"stt\",\"endeasing\":\"nothing\",\"serial\":\"9\",\"endTimeFinal\":6500,\"endSpeedFinal\":300,\"realEndTime\":6800,\"timeLast\":2000,\"align_hor\":\"left\",\"align_vert\":\"top\",\"resizeme\":\"\",\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"}]");
INSERT INTO `d1_revslider_slides` VALUES("7", "4", "3", "{\"title\":\"Slide\",\"state\":\"published\",\"slide_transition\":\"fade\",\"0\":\"Choose Image\",\"slot_amount\":\"7\",\"transition_rotation\":\"0\",\"transition_duration\":\"300\",\"delay\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"fullwidth_centering\":\"true\",\"background_type\":\"image\",\"image_id\":\"\",\"slide_bg_color\":\"#E7E7E7\",\"image\":null}", "[{\"style\":\"\",\"text\":\"Mann\",\"type\":\"image\",\"image_url\":\"http://hrd.softons.cu.cc/wp-content//uploads/2013/06/rev_slide_3_obj_1_v01.png\",\"left\":368,\"top\":0,\"animation\":\"lfr\",\"easing\":\"easeOutExpo\",\"speed\":500,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"time\":500,\"endtime\":\"9000\",\"endspeed\":300,\"endanimation\":\"ltl\",\"endeasing\":\"nothing\",\"serial\":\"0\",\"endTimeFinal\":9000,\"endSpeedFinal\":300,\"realEndTime\":9300,\"timeLast\":8800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"resizeme\":false,\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},{\"text\":\"Powerful Features\",\"type\":\"text\",\"left\":28,\"top\":102,\"animation\":\"lft\",\"easing\":\"easeOutExpo\",\"speed\":300,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"style\":\"g1-layer-medium-white\",\"time\":1400,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":\"1\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":7600,\"align_hor\":\"left\",\"align_vert\":\"top\",\"resizeme\":false,\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},{\"text\":\"Easy to Maintenance\",\"type\":\"text\",\"left\":28,\"top\":168,\"animation\":\"lft\",\"easing\":\"easeOutExpo\",\"speed\":300,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"style\":\"g1-layer-large-white\",\"time\":1100,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":\"2\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":7900,\"align_hor\":\"left\",\"align_vert\":\"top\",\"resizeme\":false,\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},{\"text\":\"Highly Customizable\",\"type\":\"text\",\"left\":28,\"top\":262,\"animation\":\"lft\",\"easing\":\"easeOutExpo\",\"speed\":300,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"style\":\"g1-layer-medium-black\",\"time\":800,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":\"3\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8200,\"align_hor\":\"left\",\"align_vert\":\"top\",\"resizeme\":false,\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"}]");
INSERT INTO `d1_revslider_slides` VALUES("8", "5", "1", "{\"title\":\"Slide\",\"state\":\"published\",\"slide_transition\":\"slidehorizontal\",\"0\":\"Choose Image\",\"slot_amount\":\"7\",\"transition_rotation\":\"0\",\"transition_duration\":\"300\",\"delay\":\"4000\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"fullwidth_centering\":\"true\",\"background_type\":\"trans\",\"image_id\":\"\",\"slide_bg_color\":\"#E7E7E7\",\"image\":null}", "[{\"text\":\"&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;500+ Fonts\",\"type\":\"text\",\"left\":28,\"top\":0,\"animation\":\"lfr\",\"easing\":\"easeOutExpo\",\"speed\":300,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"style\":\"g1-layer-xlarge-black\",\"time\":800,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":\"0\",\"endTimeFinal\":3700,\"endSpeedFinal\":300,\"realEndTime\":4000,\"timeLast\":3200,\"align_hor\":\"right\",\"align_vert\":\"middle\",\"resizeme\":false,\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},{\"text\":\"Beatiful Typography\",\"type\":\"text\",\"left\":28,\"top\":80,\"animation\":\"lfr\",\"easing\":\"easeOutExpo\",\"speed\":300,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"style\":\"g1-layer-medium-black\",\"time\":1100,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":\"1\",\"endTimeFinal\":3700,\"endSpeedFinal\":300,\"realEndTime\":4000,\"timeLast\":2900,\"align_hor\":\"right\",\"align_vert\":\"top\",\"resizeme\":false,\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},{\"style\":\"\",\"text\":\"Man\",\"type\":\"image\",\"image_url\":\"http://hrd.softons.cu.cc/wp-content//uploads/2013/06/revslider_transparent_1_obj11.png\",\"left\":0,\"top\":-70,\"animation\":\"sfl\",\"easing\":\"easeOutExpo\",\"speed\":500,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"time\":500,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":\"2\",\"endTimeFinal\":3500,\"endSpeedFinal\":300,\"realEndTime\":4000,\"timeLast\":3500,\"align_hor\":\"left\",\"align_vert\":\"top\",\"resizeme\":false,\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"}]");
INSERT INTO `d1_revslider_slides` VALUES("9", "5", "2", "{\"title\":\"Slide\",\"state\":\"published\",\"slide_transition\":\"slidehorizontal\",\"0\":\"Choose Image\",\"slot_amount\":\"7\",\"transition_rotation\":\"0\",\"transition_duration\":\"300\",\"delay\":\"4000\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"fullwidth_centering\":\"true\",\"background_type\":\"trans\",\"image_id\":\"\",\"slide_bg_color\":\"#E7E7E7\",\"image\":null}", "[{\"text\":\"100% Responsive\",\"type\":\"text\",\"left\":28,\"top\":80,\"animation\":\"lfl\",\"easing\":\"easeOutExpo\",\"speed\":300,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"g1-layer-medium-white\",\"time\":1100,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"0\",\"endTimeFinal\":3700,\"endSpeedFinal\":300,\"realEndTime\":4000,\"timeLast\":2900},{\"text\":\"Retina Ready&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;          \",\"type\":\"text\",\"left\":28,\"top\":0,\"animation\":\"lfl\",\"easing\":\"easeOutExpo\",\"speed\":300,\"hiddenunder\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"video_autoplay\":false,\"style\":\"g1-layer-xlarge-white\",\"time\":800,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":\"1\",\"endTimeFinal\":3700,\"endSpeedFinal\":300,\"realEndTime\":4000,\"timeLast\":3200,\"align_hor\":\"left\",\"align_vert\":\"middle\",\"resizeme\":false,\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},{\"style\":\"\",\"text\":\"Image 2\",\"type\":\"image\",\"image_url\":\"http://hrd.softons.cu.cc/wp-content//uploads/2013/06/revslider_transparent_2_obj1.png\",\"left\":480,\"top\":-90,\"animation\":\"sfr\",\"easing\":\"easeOutExpo\",\"speed\":300,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"time\":500,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"2\",\"endTimeFinal\":3700,\"endSpeedFinal\":300,\"realEndTime\":4000,\"timeLast\":3500}]");
INSERT INTO `d1_revslider_slides` VALUES("10", "1", "3", "{\"background_type\":\"image\",\"image\":\"http:\\/\\/neb.softonssoft.cu.cc\\/wp-content\\/uploads\\/2014\\/10\\/Home-slide3.jpg\",\"image_id\":\"2253\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"random\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"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\":\"4000\",\"kb_easing\":\"Linear.easeNone\"}", "[]");

/* INSERT TABLE DATA: d1_term_relationships */
INSERT INTO `d1_term_relationships` VALUES("1", "1", "0");
INSERT INTO `d1_term_relationships` VALUES("240", "19", "0");
INSERT INTO `d1_term_relationships` VALUES("240", "22", "0");
INSERT INTO `d1_term_relationships` VALUES("240", "37", "0");
INSERT INTO `d1_term_relationships` VALUES("240", "20", "0");
INSERT INTO `d1_term_relationships` VALUES("240", "21", "0");
INSERT INTO `d1_term_relationships` VALUES("240", "23", "0");
INSERT INTO `d1_term_relationships` VALUES("240", "26", "0");
INSERT INTO `d1_term_relationships` VALUES("240", "27", "0");
INSERT INTO `d1_term_relationships` VALUES("240", "30", "0");
INSERT INTO `d1_term_relationships` VALUES("240", "32", "0");
INSERT INTO `d1_term_relationships` VALUES("240", "39", "0");
INSERT INTO `d1_term_relationships` VALUES("240", "40", "0");
INSERT INTO `d1_term_relationships` VALUES("241", "20", "0");
INSERT INTO `d1_term_relationships` VALUES("241", "21", "0");
INSERT INTO `d1_term_relationships` VALUES("241", "23", "0");
INSERT INTO `d1_term_relationships` VALUES("241", "26", "0");
INSERT INTO `d1_term_relationships` VALUES("241", "27", "0");
INSERT INTO `d1_term_relationships` VALUES("241", "32", "0");
INSERT INTO `d1_term_relationships` VALUES("241", "38", "0");
INSERT INTO `d1_term_relationships` VALUES("241", "39", "0");
INSERT INTO `d1_term_relationships` VALUES("241", "40", "0");
INSERT INTO `d1_term_relationships` VALUES("241", "22", "0");
INSERT INTO `d1_term_relationships` VALUES("241", "25", "0");
INSERT INTO `d1_term_relationships` VALUES("241", "28", "0");
INSERT INTO `d1_term_relationships` VALUES("242", "21", "0");
INSERT INTO `d1_term_relationships` VALUES("242", "23", "0");
INSERT INTO `d1_term_relationships` VALUES("242", "26", "0");
INSERT INTO `d1_term_relationships` VALUES("242", "27", "0");
INSERT INTO `d1_term_relationships` VALUES("242", "30", "0");
INSERT INTO `d1_term_relationships` VALUES("242", "32", "0");
INSERT INTO `d1_term_relationships` VALUES("242", "38", "0");
INSERT INTO `d1_term_relationships` VALUES("242", "39", "0");
INSERT INTO `d1_term_relationships` VALUES("242", "40", "0");
INSERT INTO `d1_term_relationships` VALUES("242", "24", "0");
INSERT INTO `d1_term_relationships` VALUES("242", "28", "0");
INSERT INTO `d1_term_relationships` VALUES("242", "29", "0");
INSERT INTO `d1_term_relationships` VALUES("243", "19", "0");
INSERT INTO `d1_term_relationships` VALUES("243", "29", "0");
INSERT INTO `d1_term_relationships` VALUES("243", "37", "0");
INSERT INTO `d1_term_relationships` VALUES("243", "20", "0");
INSERT INTO `d1_term_relationships` VALUES("243", "21", "0");
INSERT INTO `d1_term_relationships` VALUES("243", "23", "0");
INSERT INTO `d1_term_relationships` VALUES("243", "26", "0");
INSERT INTO `d1_term_relationships` VALUES("243", "27", "0");
INSERT INTO `d1_term_relationships` VALUES("243", "30", "0");
INSERT INTO `d1_term_relationships` VALUES("243", "38", "0");
INSERT INTO `d1_term_relationships` VALUES("243", "39", "0");
INSERT INTO `d1_term_relationships` VALUES("243", "40", "0");
INSERT INTO `d1_term_relationships` VALUES("244", "19", "0");
INSERT INTO `d1_term_relationships` VALUES("244", "22", "0");
INSERT INTO `d1_term_relationships` VALUES("244", "25", "0");
INSERT INTO `d1_term_relationships` VALUES("244", "20", "0");
INSERT INTO `d1_term_relationships` VALUES("244", "21", "0");
INSERT INTO `d1_term_relationships` VALUES("244", "23", "0");
INSERT INTO `d1_term_relationships` VALUES("244", "26", "0");
INSERT INTO `d1_term_relationships` VALUES("244", "27", "0");
INSERT INTO `d1_term_relationships` VALUES("244", "30", "0");
INSERT INTO `d1_term_relationships` VALUES("244", "32", "0");
INSERT INTO `d1_term_relationships` VALUES("244", "38", "0");
INSERT INTO `d1_term_relationships` VALUES("244", "40", "0");
INSERT INTO `d1_term_relationships` VALUES("245", "20", "0");
INSERT INTO `d1_term_relationships` VALUES("245", "21", "0");
INSERT INTO `d1_term_relationships` VALUES("245", "23", "0");
INSERT INTO `d1_term_relationships` VALUES("245", "27", "0");
INSERT INTO `d1_term_relationships` VALUES("245", "30", "0");
INSERT INTO `d1_term_relationships` VALUES("245", "32", "0");
INSERT INTO `d1_term_relationships` VALUES("245", "38", "0");
INSERT INTO `d1_term_relationships` VALUES("245", "39", "0");
INSERT INTO `d1_term_relationships` VALUES("245", "40", "0");
INSERT INTO `d1_term_relationships` VALUES("245", "24", "0");
INSERT INTO `d1_term_relationships` VALUES("245", "25", "0");
INSERT INTO `d1_term_relationships` VALUES("245", "28", "0");
INSERT INTO `d1_term_relationships` VALUES("245", "36", "0");
INSERT INTO `d1_term_relationships` VALUES("246", "20", "0");
INSERT INTO `d1_term_relationships` VALUES("246", "21", "0");
INSERT INTO `d1_term_relationships` VALUES("246", "23", "0");
INSERT INTO `d1_term_relationships` VALUES("246", "26", "0");
INSERT INTO `d1_term_relationships` VALUES("246", "30", "0");
INSERT INTO `d1_term_relationships` VALUES("246", "32", "0");
INSERT INTO `d1_term_relationships` VALUES("246", "38", "0");
INSERT INTO `d1_term_relationships` VALUES("246", "39", "0");
INSERT INTO `d1_term_relationships` VALUES("246", "40", "0");
INSERT INTO `d1_term_relationships` VALUES("246", "24", "0");
INSERT INTO `d1_term_relationships` VALUES("246", "29", "0");
INSERT INTO `d1_term_relationships` VALUES("246", "37", "0");
INSERT INTO `d1_term_relationships` VALUES("246", "36", "0");
INSERT INTO `d1_term_relationships` VALUES("248", "19", "0");
INSERT INTO `d1_term_relationships` VALUES("248", "22", "0");
INSERT INTO `d1_term_relationships` VALUES("248", "37", "0");
INSERT INTO `d1_term_relationships` VALUES("248", "20", "0");
INSERT INTO `d1_term_relationships` VALUES("248", "23", "0");
INSERT INTO `d1_term_relationships` VALUES("248", "26", "0");
INSERT INTO `d1_term_relationships` VALUES("248", "27", "0");
INSERT INTO `d1_term_relationships` VALUES("248", "30", "0");
INSERT INTO `d1_term_relationships` VALUES("248", "32", "0");
INSERT INTO `d1_term_relationships` VALUES("248", "38", "0");
INSERT INTO `d1_term_relationships` VALUES("248", "39", "0");
INSERT INTO `d1_term_relationships` VALUES("248", "40", "0");
INSERT INTO `d1_term_relationships` VALUES("249", "20", "0");
INSERT INTO `d1_term_relationships` VALUES("249", "21", "0");
INSERT INTO `d1_term_relationships` VALUES("249", "23", "0");
INSERT INTO `d1_term_relationships` VALUES("249", "26", "0");
INSERT INTO `d1_term_relationships` VALUES("249", "27", "0");
INSERT INTO `d1_term_relationships` VALUES("249", "30", "0");
INSERT INTO `d1_term_relationships` VALUES("249", "32", "0");
INSERT INTO `d1_term_relationships` VALUES("249", "38", "0");
INSERT INTO `d1_term_relationships` VALUES("249", "39", "0");
INSERT INTO `d1_term_relationships` VALUES("249", "22", "0");
INSERT INTO `d1_term_relationships` VALUES("249", "25", "0");
INSERT INTO `d1_term_relationships` VALUES("249", "28", "0");
INSERT INTO `d1_term_relationships` VALUES("250", "20", "0");
INSERT INTO `d1_term_relationships` VALUES("250", "21", "0");
INSERT INTO `d1_term_relationships` VALUES("250", "23", "0");
INSERT INTO `d1_term_relationships` VALUES("250", "26", "0");
INSERT INTO `d1_term_relationships` VALUES("250", "27", "0");
INSERT INTO `d1_term_relationships` VALUES("250", "30", "0");
INSERT INTO `d1_term_relationships` VALUES("250", "32", "0");
INSERT INTO `d1_term_relationships` VALUES("250", "38", "0");
INSERT INTO `d1_term_relationships` VALUES("250", "39", "0");
INSERT INTO `d1_term_relationships` VALUES("250", "40", "0");
INSERT INTO `d1_term_relationships` VALUES("250", "24", "0");
INSERT INTO `d1_term_relationships` VALUES("250", "28", "0");
INSERT INTO `d1_term_relationships` VALUES("250", "29", "0");
INSERT INTO `d1_term_relationships` VALUES("251", "19", "0");
INSERT INTO `d1_term_relationships` VALUES("251", "29", "0");
INSERT INTO `d1_term_relationships` VALUES("251", "37", "0");
INSERT INTO `d1_term_relationships` VALUES("251", "20", "0");
INSERT INTO `d1_term_relationships` VALUES("251", "21", "0");
INSERT INTO `d1_term_relationships` VALUES("251", "26", "0");
INSERT INTO `d1_term_relationships` VALUES("251", "27", "0");
INSERT INTO `d1_term_relationships` VALUES("251", "30", "0");
INSERT INTO `d1_term_relationships` VALUES("251", "32", "0");
INSERT INTO `d1_term_relationships` VALUES("251", "38", "0");
INSERT INTO `d1_term_relationships` VALUES("251", "39", "0");
INSERT INTO `d1_term_relationships` VALUES("251", "40", "0");
INSERT INTO `d1_term_relationships` VALUES("252", "19", "0");
INSERT INTO `d1_term_relationships` VALUES("252", "22", "0");
INSERT INTO `d1_term_relationships` VALUES("252", "25", "0");
INSERT INTO `d1_term_relationships` VALUES("252", "20", "0");
INSERT INTO `d1_term_relationships` VALUES("252", "21", "0");
INSERT INTO `d1_term_relationships` VALUES("252", "23", "0");
INSERT INTO `d1_term_relationships` VALUES("252", "26", "0");
INSERT INTO `d1_term_relationships` VALUES("252", "27", "0");
INSERT INTO `d1_term_relationships` VALUES("252", "30", "0");
INSERT INTO `d1_term_relationships` VALUES("252", "32", "0");
INSERT INTO `d1_term_relationships` VALUES("252", "39", "0");
INSERT INTO `d1_term_relationships` VALUES("252", "40", "0");
INSERT INTO `d1_term_relationships` VALUES("253", "20", "0");
INSERT INTO `d1_term_relationships` VALUES("253", "21", "0");
INSERT INTO `d1_term_relationships` VALUES("253", "23", "0");
INSERT INTO `d1_term_relationships` VALUES("253", "26", "0");
INSERT INTO `d1_term_relationships` VALUES("253", "27", "0");
INSERT INTO `d1_term_relationships` VALUES("253", "32", "0");
INSERT INTO `d1_term_relationships` VALUES("253", "38", "0");
INSERT INTO `d1_term_relationships` VALUES("253", "39", "0");
INSERT INTO `d1_term_relationships` VALUES("253", "40", "0");
INSERT INTO `d1_term_relationships` VALUES("253", "24", "0");
INSERT INTO `d1_term_relationships` VALUES("253", "25", "0");
INSERT INTO `d1_term_relationships` VALUES("253", "28", "0");
INSERT INTO `d1_term_relationships` VALUES("254", "21", "0");
INSERT INTO `d1_term_relationships` VALUES("254", "23", "0");
INSERT INTO `d1_term_relationships` VALUES("254", "26", "0");
INSERT INTO `d1_term_relationships` VALUES("254", "27", "0");
INSERT INTO `d1_term_relationships` VALUES("254", "30", "0");
INSERT INTO `d1_term_relationships` VALUES("254", "32", "0");
INSERT INTO `d1_term_relationships` VALUES("254", "38", "0");
INSERT INTO `d1_term_relationships` VALUES("254", "39", "0");
INSERT INTO `d1_term_relationships` VALUES("254", "40", "0");
INSERT INTO `d1_term_relationships` VALUES("254", "24", "0");
INSERT INTO `d1_term_relationships` VALUES("254", "29", "0");
INSERT INTO `d1_term_relationships` VALUES("254", "37", "0");
INSERT INTO `d1_term_relationships` VALUES("255", "19", "0");
INSERT INTO `d1_term_relationships` VALUES("255", "22", "0");
INSERT INTO `d1_term_relationships` VALUES("255", "37", "0");
INSERT INTO `d1_term_relationships` VALUES("255", "20", "0");
INSERT INTO `d1_term_relationships` VALUES("255", "21", "0");
INSERT INTO `d1_term_relationships` VALUES("255", "23", "0");
INSERT INTO `d1_term_relationships` VALUES("255", "26", "0");
INSERT INTO `d1_term_relationships` VALUES("255", "27", "0");
INSERT INTO `d1_term_relationships` VALUES("255", "30", "0");
INSERT INTO `d1_term_relationships` VALUES("255", "38", "0");
INSERT INTO `d1_term_relationships` VALUES("255", "39", "0");
INSERT INTO `d1_term_relationships` VALUES("255", "40", "0");
INSERT INTO `d1_term_relationships` VALUES("256", "20", "0");
INSERT INTO `d1_term_relationships` VALUES("256", "21", "0");
INSERT INTO `d1_term_relationships` VALUES("256", "23", "0");
INSERT INTO `d1_term_relationships` VALUES("256", "26", "0");
INSERT INTO `d1_term_relationships` VALUES("256", "27", "0");
INSERT INTO `d1_term_relationships` VALUES("256", "30", "0");
INSERT INTO `d1_term_relationships` VALUES("256", "32", "0");
INSERT INTO `d1_term_relationships` VALUES("256", "38", "0");
INSERT INTO `d1_term_relationships` VALUES("256", "40", "0");
INSERT INTO `d1_term_relationships` VALUES("256", "22", "0");
INSERT INTO `d1_term_relationships` VALUES("256", "25", "0");
INSERT INTO `d1_term_relationships` VALUES("256", "28", "0");
INSERT INTO `d1_term_relationships` VALUES("257", "20", "0");
INSERT INTO `d1_term_relationships` VALUES("257", "21", "0");
INSERT INTO `d1_term_relationships` VALUES("257", "23", "0");
INSERT INTO `d1_term_relationships` VALUES("257", "27", "0");
INSERT INTO `d1_term_relationships` VALUES("257", "30", "0");
INSERT INTO `d1_term_relationships` VALUES("257", "32", "0");
INSERT INTO `d1_term_relationships` VALUES("257", "38", "0");
INSERT INTO `d1_term_relationships` VALUES("257", "39", "0");
INSERT INTO `d1_term_relationships` VALUES("257", "40", "0");
INSERT INTO `d1_term_relationships` VALUES("257", "24", "0");
INSERT INTO `d1_term_relationships` VALUES("257", "28", "0");
INSERT INTO `d1_term_relationships` VALUES("257", "29", "0");
INSERT INTO `d1_term_relationships` VALUES("258", "19", "0");
INSERT INTO `d1_term_relationships` VALUES("258", "29", "0");
INSERT INTO `d1_term_relationships` VALUES("258", "37", "0");
INSERT INTO `d1_term_relationships` VALUES("258", "20", "0");
INSERT INTO `d1_term_relationships` VALUES("258", "21", "0");
INSERT INTO `d1_term_relationships` VALUES("258", "23", "0");
INSERT INTO `d1_term_relationships` VALUES("258", "26", "0");
INSERT INTO `d1_term_relationships` VALUES("258", "30", "0");
INSERT INTO `d1_term_relationships` VALUES("258", "32", "0");
INSERT INTO `d1_term_relationships` VALUES("258", "38", "0");
INSERT INTO `d1_term_relationships` VALUES("258", "39", "0");
INSERT INTO `d1_term_relationships` VALUES("258", "40", "0");
INSERT INTO `d1_term_relationships` VALUES("259", "19", "0");
INSERT INTO `d1_term_relationships` VALUES("259", "22", "0");
INSERT INTO `d1_term_relationships` VALUES("259", "25", "0");
INSERT INTO `d1_term_relationships` VALUES("259", "20", "0");
INSERT INTO `d1_term_relationships` VALUES("259", "23", "0");
INSERT INTO `d1_term_relationships` VALUES("259", "26", "0");
INSERT INTO `d1_term_relationships` VALUES("259", "27", "0");
INSERT INTO `d1_term_relationships` VALUES("259", "30", "0");
INSERT INTO `d1_term_relationships` VALUES("259", "32", "0");
INSERT INTO `d1_term_relationships` VALUES("259", "38", "0");
INSERT INTO `d1_term_relationships` VALUES("259", "39", "0");
INSERT INTO `d1_term_relationships` VALUES("259", "40", "0");
INSERT INTO `d1_term_relationships` VALUES("2357", "55", "0");
INSERT INTO `d1_term_relationships` VALUES("2340", "55", "0");
INSERT INTO `d1_term_relationships` VALUES("2323", "55", "0");
INSERT INTO `d1_term_relationships` VALUES("2324", "55", "0");
INSERT INTO `d1_term_relationships` VALUES("262", "20", "0");
INSERT INTO `d1_term_relationships` VALUES("262", "21", "0");
INSERT INTO `d1_term_relationships` VALUES("262", "23", "0");
INSERT INTO `d1_term_relationships` VALUES("262", "26", "0");
INSERT INTO `d1_term_relationships` VALUES("262", "27", "0");
INSERT INTO `d1_term_relationships` VALUES("262", "30", "0");
INSERT INTO `d1_term_relationships` VALUES("262", "32", "0");
INSERT INTO `d1_term_relationships` VALUES("262", "38", "0");
INSERT INTO `d1_term_relationships` VALUES("262", "39", "0");
INSERT INTO `d1_term_relationships` VALUES("262", "40", "0");
INSERT INTO `d1_term_relationships` VALUES("262", "24", "0");
INSERT INTO `d1_term_relationships` VALUES("262", "29", "0");
INSERT INTO `d1_term_relationships` VALUES("262", "37", "0");
INSERT INTO `d1_term_relationships` VALUES("2024", "43", "0");
INSERT INTO `d1_term_relationships` VALUES("67", "1", "0");
INSERT INTO `d1_term_relationships` VALUES("67", "46", "0");
INSERT INTO `d1_term_relationships` VALUES("74", "1", "0");
INSERT INTO `d1_term_relationships` VALUES("74", "47", "0");
INSERT INTO `d1_term_relationships` VALUES("91", "14", "0");
INSERT INTO `d1_term_relationships` VALUES("89", "12", "0");
INSERT INTO `d1_term_relationships` VALUES("89", "16", "0");
INSERT INTO `d1_term_relationships` VALUES("89", "17", "0");
INSERT INTO `d1_term_relationships` VALUES("89", "2", "0");
INSERT INTO `d1_term_relationships` VALUES("89", "3", "0");
INSERT INTO `d1_term_relationships` VALUES("89", "4", "0");
INSERT INTO `d1_term_relationships` VALUES("89", "5", "0");
INSERT INTO `d1_term_relationships` VALUES("89", "6", "0");
INSERT INTO `d1_term_relationships` VALUES("89", "7", "0");
INSERT INTO `d1_term_relationships` VALUES("89", "8", "0");
INSERT INTO `d1_term_relationships` VALUES("89", "9", "0");
INSERT INTO `d1_term_relationships` VALUES("89", "10", "0");
INSERT INTO `d1_term_relationships` VALUES("89", "11", "0");
INSERT INTO `d1_term_relationships` VALUES("90", "13", "0");
INSERT INTO `d1_term_relationships` VALUES("90", "14", "0");
INSERT INTO `d1_term_relationships` VALUES("90", "17", "0");
INSERT INTO `d1_term_relationships` VALUES("90", "2", "0");
INSERT INTO `d1_term_relationships` VALUES("90", "3", "0");
INSERT INTO `d1_term_relationships` VALUES("90", "4", "0");
INSERT INTO `d1_term_relationships` VALUES("90", "5", "0");
INSERT INTO `d1_term_relationships` VALUES("90", "6", "0");
INSERT INTO `d1_term_relationships` VALUES("90", "7", "0");
INSERT INTO `d1_term_relationships` VALUES("90", "8", "0");
INSERT INTO `d1_term_relationships` VALUES("90", "9", "0");
INSERT INTO `d1_term_relationships` VALUES("90", "10", "0");
INSERT INTO `d1_term_relationships` VALUES("90", "11", "0");
INSERT INTO `d1_term_relationships` VALUES("91", "2", "0");
INSERT INTO `d1_term_relationships` VALUES("91", "3", "0");
INSERT INTO `d1_term_relationships` VALUES("91", "4", "0");
INSERT INTO `d1_term_relationships` VALUES("91", "5", "0");
INSERT INTO `d1_term_relationships` VALUES("91", "6", "0");
INSERT INTO `d1_term_relationships` VALUES("91", "7", "0");
INSERT INTO `d1_term_relationships` VALUES("91", "8", "0");
INSERT INTO `d1_term_relationships` VALUES("91", "9", "0");
INSERT INTO `d1_term_relationships` VALUES("91", "10", "0");
INSERT INTO `d1_term_relationships` VALUES("91", "11", "0");
INSERT INTO `d1_term_relationships` VALUES("91", "15", "0");
INSERT INTO `d1_term_relationships` VALUES("91", "18", "0");
INSERT INTO `d1_term_relationships` VALUES("91", "48", "0");
INSERT INTO `d1_term_relationships` VALUES("95", "48", "0");
INSERT INTO `d1_term_relationships` VALUES("94", "12", "0");
INSERT INTO `d1_term_relationships` VALUES("94", "16", "0");
INSERT INTO `d1_term_relationships` VALUES("94", "18", "0");
INSERT INTO `d1_term_relationships` VALUES("94", "2", "0");
INSERT INTO `d1_term_relationships` VALUES("94", "3", "0");
INSERT INTO `d1_term_relationships` VALUES("94", "4", "0");
INSERT INTO `d1_term_relationships` VALUES("94", "5", "0");
INSERT INTO `d1_term_relationships` VALUES("94", "6", "0");
INSERT INTO `d1_term_relationships` VALUES("94", "7", "0");
INSERT INTO `d1_term_relationships` VALUES("94", "8", "0");
INSERT INTO `d1_term_relationships` VALUES("94", "9", "0");
INSERT INTO `d1_term_relationships` VALUES("94", "10", "0");
INSERT INTO `d1_term_relationships` VALUES("94", "11", "0");
INSERT INTO `d1_term_relationships` VALUES("95", "12", "0");
INSERT INTO `d1_term_relationships` VALUES("95", "13", "0");
INSERT INTO `d1_term_relationships` VALUES("95", "17", "0");
INSERT INTO `d1_term_relationships` VALUES("95", "2", "0");
INSERT INTO `d1_term_relationships` VALUES("95", "3", "0");
INSERT INTO `d1_term_relationships` VALUES("95", "4", "0");
INSERT INTO `d1_term_relationships` VALUES("95", "5", "0");
INSERT INTO `d1_term_relationships` VALUES("95", "6", "0");
INSERT INTO `d1_term_relationships` VALUES("95", "7", "0");
INSERT INTO `d1_term_relationships` VALUES("95", "8", "0");
INSERT INTO `d1_term_relationships` VALUES("95", "9", "0");
INSERT INTO `d1_term_relationships` VALUES("95", "10", "0");
INSERT INTO `d1_term_relationships` VALUES("95", "11", "0");
INSERT INTO `d1_term_relationships` VALUES("96", "48", "0");
INSERT INTO `d1_term_relationships` VALUES("96", "13", "0");
INSERT INTO `d1_term_relationships` VALUES("96", "14", "0");
INSERT INTO `d1_term_relationships` VALUES("96", "15", "0");
INSERT INTO `d1_term_relationships` VALUES("96", "2", "0");
INSERT INTO `d1_term_relationships` VALUES("96", "3", "0");
INSERT INTO `d1_term_relationships` VALUES("96", "4", "0");
INSERT INTO `d1_term_relationships` VALUES("96", "5", "0");
INSERT INTO `d1_term_relationships` VALUES("96", "6", "0");
INSERT INTO `d1_term_relationships` VALUES("96", "7", "0");
INSERT INTO `d1_term_relationships` VALUES("96", "8", "0");
INSERT INTO `d1_term_relationships` VALUES("96", "9", "0");
INSERT INTO `d1_term_relationships` VALUES("96", "10", "0");
INSERT INTO `d1_term_relationships` VALUES("96", "11", "0");
INSERT INTO `d1_term_relationships` VALUES("97", "15", "0");
INSERT INTO `d1_term_relationships` VALUES("97", "2", "0");
INSERT INTO `d1_term_relationships` VALUES("97", "3", "0");
INSERT INTO `d1_term_relationships` VALUES("97", "4", "0");
INSERT INTO `d1_term_relationships` VALUES("97", "5", "0");
INSERT INTO `d1_term_relationships` VALUES("97", "6", "0");
INSERT INTO `d1_term_relationships` VALUES("97", "7", "0");
INSERT INTO `d1_term_relationships` VALUES("97", "8", "0");
INSERT INTO `d1_term_relationships` VALUES("97", "9", "0");
INSERT INTO `d1_term_relationships` VALUES("97", "10", "0");
INSERT INTO `d1_term_relationships` VALUES("97", "11", "0");
INSERT INTO `d1_term_relationships` VALUES("97", "16", "0");
INSERT INTO `d1_term_relationships` VALUES("97", "18", "0");
INSERT INTO `d1_term_relationships` VALUES("97", "48", "0");
INSERT INTO `d1_term_relationships` VALUES("100", "1", "0");
INSERT INTO `d1_term_relationships` VALUES("98", "12", "0");
INSERT INTO `d1_term_relationships` VALUES("98", "16", "0");
INSERT INTO `d1_term_relationships` VALUES("98", "17", "0");
INSERT INTO `d1_term_relationships` VALUES("98", "2", "0");
INSERT INTO `d1_term_relationships` VALUES("98", "3", "0");
INSERT INTO `d1_term_relationships` VALUES("98", "4", "0");
INSERT INTO `d1_term_relationships` VALUES("98", "5", "0");
INSERT INTO `d1_term_relationships` VALUES("98", "6", "0");
INSERT INTO `d1_term_relationships` VALUES("98", "7", "0");
INSERT INTO `d1_term_relationships` VALUES("98", "8", "0");
INSERT INTO `d1_term_relationships` VALUES("98", "9", "0");
INSERT INTO `d1_term_relationships` VALUES("98", "10", "0");
INSERT INTO `d1_term_relationships` VALUES("98", "11", "0");
INSERT INTO `d1_term_relationships` VALUES("100", "47", "0");
INSERT INTO `d1_term_relationships` VALUES("105", "1", "0");
INSERT INTO `d1_term_relationships` VALUES("105", "49", "0");
INSERT INTO `d1_term_relationships` VALUES("106", "1", "0");
INSERT INTO `d1_term_relationships` VALUES("106", "49", "0");
INSERT INTO `d1_term_relationships` VALUES("439", "1", "0");
INSERT INTO `d1_term_relationships` VALUES("439", "50", "0");
INSERT INTO `d1_term_relationships` VALUES("588", "14", "0");
INSERT INTO `d1_term_relationships` VALUES("587", "13", "0");
INSERT INTO `d1_term_relationships` VALUES("587", "14", "0");
INSERT INTO `d1_term_relationships` VALUES("587", "17", "0");
INSERT INTO `d1_term_relationships` VALUES("587", "2", "0");
INSERT INTO `d1_term_relationships` VALUES("587", "3", "0");
INSERT INTO `d1_term_relationships` VALUES("587", "4", "0");
INSERT INTO `d1_term_relationships` VALUES("587", "5", "0");
INSERT INTO `d1_term_relationships` VALUES("587", "6", "0");
INSERT INTO `d1_term_relationships` VALUES("587", "7", "0");
INSERT INTO `d1_term_relationships` VALUES("587", "8", "0");
INSERT INTO `d1_term_relationships` VALUES("587", "9", "0");
INSERT INTO `d1_term_relationships` VALUES("587", "10", "0");
INSERT INTO `d1_term_relationships` VALUES("587", "11", "0");
INSERT INTO `d1_term_relationships` VALUES("588", "2", "0");
INSERT INTO `d1_term_relationships` VALUES("588", "3", "0");
INSERT INTO `d1_term_relationships` VALUES("588", "4", "0");
INSERT INTO `d1_term_relationships` VALUES("588", "5", "0");
INSERT INTO `d1_term_relationships` VALUES("588", "6", "0");
INSERT INTO `d1_term_relationships` VALUES("588", "7", "0");
INSERT INTO `d1_term_relationships` VALUES("588", "8", "0");
INSERT INTO `d1_term_relationships` VALUES("588", "9", "0");
INSERT INTO `d1_term_relationships` VALUES("588", "10", "0");
INSERT INTO `d1_term_relationships` VALUES("588", "11", "0");
INSERT INTO `d1_term_relationships` VALUES("588", "15", "0");
INSERT INTO `d1_term_relationships` VALUES("588", "18", "0");
INSERT INTO `d1_term_relationships` VALUES("1153", "1", "0");
INSERT INTO `d1_term_relationships` VALUES("589", "12", "0");
INSERT INTO `d1_term_relationships` VALUES("589", "16", "0");
INSERT INTO `d1_term_relationships` VALUES("589", "18", "0");
INSERT INTO `d1_term_relationships` VALUES("589", "2", "0");
INSERT INTO `d1_term_relationships` VALUES("589", "3", "0");
INSERT INTO `d1_term_relationships` VALUES("589", "4", "0");
INSERT INTO `d1_term_relationships` VALUES("589", "5", "0");
INSERT INTO `d1_term_relationships` VALUES("589", "6", "0");
INSERT INTO `d1_term_relationships` VALUES("589", "7", "0");
INSERT INTO `d1_term_relationships` VALUES("589", "8", "0");
INSERT INTO `d1_term_relationships` VALUES("589", "9", "0");
INSERT INTO `d1_term_relationships` VALUES("589", "10", "0");
INSERT INTO `d1_term_relationships` VALUES("589", "11", "0");
INSERT INTO `d1_term_relationships` VALUES("1164", "1", "0");
INSERT INTO `d1_term_relationships` VALUES("1241", "1", "0");
INSERT INTO `d1_term_relationships` VALUES("101", "49", "0");
INSERT INTO `d1_term_relationships` VALUES("17", "13", "0");
INSERT INTO `d1_term_relationships` VALUES("17", "14", "0");
INSERT INTO `d1_term_relationships` VALUES("17", "15", "0");
INSERT INTO `d1_term_relationships` VALUES("17", "2", "0");
INSERT INTO `d1_term_relationships` VALUES("17", "3", "0");
INSERT INTO `d1_term_relationships` VALUES("17", "4", "0");
INSERT INTO `d1_term_relationships` VALUES("17", "5", "0");
INSERT INTO `d1_term_relationships` VALUES("17", "6", "0");
INSERT INTO `d1_term_relationships` VALUES("17", "7", "0");
INSERT INTO `d1_term_relationships` VALUES("17", "8", "0");
INSERT INTO `d1_term_relationships` VALUES("17", "9", "0");
INSERT INTO `d1_term_relationships` VALUES("17", "10", "0");
INSERT INTO `d1_term_relationships` VALUES("17", "11", "0");
INSERT INTO `d1_term_relationships` VALUES("101", "12", "0");
INSERT INTO `d1_term_relationships` VALUES("101", "13", "0");
INSERT INTO `d1_term_relationships` VALUES("101", "17", "0");
INSERT INTO `d1_term_relationships` VALUES("101", "2", "0");
INSERT INTO `d1_term_relationships` VALUES("101", "3", "0");
INSERT INTO `d1_term_relationships` VALUES("101", "4", "0");
INSERT INTO `d1_term_relationships` VALUES("101", "5", "0");
INSERT INTO `d1_term_relationships` VALUES("101", "6", "0");
INSERT INTO `d1_term_relationships` VALUES("101", "7", "0");
INSERT INTO `d1_term_relationships` VALUES("101", "8", "0");
INSERT INTO `d1_term_relationships` VALUES("101", "9", "0");
INSERT INTO `d1_term_relationships` VALUES("101", "10", "0");
INSERT INTO `d1_term_relationships` VALUES("101", "11", "0");
INSERT INTO `d1_term_relationships` VALUES("441", "14", "0");
INSERT INTO `d1_term_relationships` VALUES("441", "2", "0");
INSERT INTO `d1_term_relationships` VALUES("441", "3", "0");
INSERT INTO `d1_term_relationships` VALUES("441", "4", "0");
INSERT INTO `d1_term_relationships` VALUES("441", "5", "0");
INSERT INTO `d1_term_relationships` VALUES("441", "6", "0");
INSERT INTO `d1_term_relationships` VALUES("441", "7", "0");
INSERT INTO `d1_term_relationships` VALUES("441", "8", "0");
INSERT INTO `d1_term_relationships` VALUES("441", "9", "0");
INSERT INTO `d1_term_relationships` VALUES("441", "10", "0");
INSERT INTO `d1_term_relationships` VALUES("441", "11", "0");
INSERT INTO `d1_term_relationships` VALUES("441", "15", "0");
INSERT INTO `d1_term_relationships` VALUES("441", "18", "0");
INSERT INTO `d1_term_relationships` VALUES("441", "51", "0");
INSERT INTO `d1_term_relationships` VALUES("442", "15", "0");
INSERT INTO `d1_term_relationships` VALUES("442", "2", "0");
INSERT INTO `d1_term_relationships` VALUES("442", "3", "0");
INSERT INTO `d1_term_relationships` VALUES("442", "4", "0");
INSERT INTO `d1_term_relationships` VALUES("442", "5", "0");
INSERT INTO `d1_term_relationships` VALUES("442", "6", "0");
INSERT INTO `d1_term_relationships` VALUES("442", "7", "0");
INSERT INTO `d1_term_relationships` VALUES("442", "8", "0");
INSERT INTO `d1_term_relationships` VALUES("442", "9", "0");
INSERT INTO `d1_term_relationships` VALUES("442", "10", "0");
INSERT INTO `d1_term_relationships` VALUES("442", "11", "0");
INSERT INTO `d1_term_relationships` VALUES("442", "16", "0");
INSERT INTO `d1_term_relationships` VALUES("442", "18", "0");
INSERT INTO `d1_term_relationships` VALUES("442", "52", "0");
INSERT INTO `d1_term_relationships` VALUES("442", "35", "0");
INSERT INTO `d1_term_relationships` VALUES("443", "48", "0");
INSERT INTO `d1_term_relationships` VALUES("443", "13", "0");
INSERT INTO `d1_term_relationships` VALUES("443", "14", "0");
INSERT INTO `d1_term_relationships` VALUES("443", "17", "0");
INSERT INTO `d1_term_relationships` VALUES("443", "2", "0");
INSERT INTO `d1_term_relationships` VALUES("443", "3", "0");
INSERT INTO `d1_term_relationships` VALUES("443", "4", "0");
INSERT INTO `d1_term_relationships` VALUES("443", "5", "0");
INSERT INTO `d1_term_relationships` VALUES("443", "6", "0");
INSERT INTO `d1_term_relationships` VALUES("443", "7", "0");
INSERT INTO `d1_term_relationships` VALUES("443", "8", "0");
INSERT INTO `d1_term_relationships` VALUES("443", "9", "0");
INSERT INTO `d1_term_relationships` VALUES("443", "10", "0");
INSERT INTO `d1_term_relationships` VALUES("443", "11", "0");
INSERT INTO `d1_term_relationships` VALUES("443", "35", "0");
INSERT INTO `d1_term_relationships` VALUES("444", "53", "0");
INSERT INTO `d1_term_relationships` VALUES("444", "12", "0");
INSERT INTO `d1_term_relationships` VALUES("444", "16", "0");
INSERT INTO `d1_term_relationships` VALUES("444", "17", "0");
INSERT INTO `d1_term_relationships` VALUES("444", "2", "0");
INSERT INTO `d1_term_relationships` VALUES("444", "3", "0");
INSERT INTO `d1_term_relationships` VALUES("444", "4", "0");
INSERT INTO `d1_term_relationships` VALUES("444", "5", "0");
INSERT INTO `d1_term_relationships` VALUES("444", "6", "0");
INSERT INTO `d1_term_relationships` VALUES("444", "7", "0");
INSERT INTO `d1_term_relationships` VALUES("444", "8", "0");
INSERT INTO `d1_term_relationships` VALUES("444", "9", "0");
INSERT INTO `d1_term_relationships` VALUES("444", "10", "0");
INSERT INTO `d1_term_relationships` VALUES("444", "11", "0");
INSERT INTO `d1_term_relationships` VALUES("444", "35", "0");
INSERT INTO `d1_term_relationships` VALUES("450", "35", "0");
INSERT INTO `d1_term_relationships` VALUES("450", "12", "0");
INSERT INTO `d1_term_relationships` VALUES("450", "16", "0");
INSERT INTO `d1_term_relationships` VALUES("450", "18", "0");
INSERT INTO `d1_term_relationships` VALUES("450", "2", "0");
INSERT INTO `d1_term_relationships` VALUES("450", "3", "0");
INSERT INTO `d1_term_relationships` VALUES("450", "4", "0");
INSERT INTO `d1_term_relationships` VALUES("450", "5", "0");
INSERT INTO `d1_term_relationships` VALUES("450", "6", "0");
INSERT INTO `d1_term_relationships` VALUES("450", "7", "0");
INSERT INTO `d1_term_relationships` VALUES("450", "8", "0");
INSERT INTO `d1_term_relationships` VALUES("450", "9", "0");
INSERT INTO `d1_term_relationships` VALUES("450", "10", "0");
INSERT INTO `d1_term_relationships` VALUES("450", "11", "0");
INSERT INTO `d1_term_relationships` VALUES("2013", "1", "0");
INSERT INTO `d1_term_relationships` VALUES("1867", "12", "0");
INSERT INTO `d1_term_relationships` VALUES("1867", "13", "0");
INSERT INTO `d1_term_relationships` VALUES("1867", "17", "0");
INSERT INTO `d1_term_relationships` VALUES("1867", "2", "0");
INSERT INTO `d1_term_relationships` VALUES("1867", "3", "0");
INSERT INTO `d1_term_relationships` VALUES("1867", "4", "0");
INSERT INTO `d1_term_relationships` VALUES("1867", "5", "0");
INSERT INTO `d1_term_relationships` VALUES("1867", "6", "0");
INSERT INTO `d1_term_relationships` VALUES("1867", "7", "0");
INSERT INTO `d1_term_relationships` VALUES("1867", "8", "0");
INSERT INTO `d1_term_relationships` VALUES("1867", "9", "0");
INSERT INTO `d1_term_relationships` VALUES("1867", "10", "0");
INSERT INTO `d1_term_relationships` VALUES("1867", "11", "0");
INSERT INTO `d1_term_relationships` VALUES("1868", "13", "0");
INSERT INTO `d1_term_relationships` VALUES("1868", "14", "0");
INSERT INTO `d1_term_relationships` VALUES("1868", "15", "0");
INSERT INTO `d1_term_relationships` VALUES("1868", "2", "0");
INSERT INTO `d1_term_relationships` VALUES("1868", "3", "0");
INSERT INTO `d1_term_relationships` VALUES("1868", "4", "0");
INSERT INTO `d1_term_relationships` VALUES("1868", "5", "0");
INSERT INTO `d1_term_relationships` VALUES("1868", "6", "0");
INSERT INTO `d1_term_relationships` VALUES("1868", "7", "0");
INSERT INTO `d1_term_relationships` VALUES("1868", "8", "0");
INSERT INTO `d1_term_relationships` VALUES("1868", "9", "0");
INSERT INTO `d1_term_relationships` VALUES("1868", "10", "0");
INSERT INTO `d1_term_relationships` VALUES("1868", "11", "0");
INSERT INTO `d1_term_relationships` VALUES("2013", "54", "0");
INSERT INTO `d1_term_relationships` VALUES("2053", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2065", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2106", "44", "0");
INSERT INTO `d1_term_relationships` VALUES("2107", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2108", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2109", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2322", "55", "0");
INSERT INTO `d1_term_relationships` VALUES("2112", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2113", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2114", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2115", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2116", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2117", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2118", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2119", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2120", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2121", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2122", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2123", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2124", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2125", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2126", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2127", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2128", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2129", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2130", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2131", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2148", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2149", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2150", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2151", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2152", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2153", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2154", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2157", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2158", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2159", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2178", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2179", "42", "0");
INSERT INTO `d1_term_relationships` VALUES("2185", "43", "0");
INSERT INTO `d1_term_relationships` VALUES("2186", "43", "0");

/* INSERT TABLE DATA: d1_term_taxonomy */
INSERT INTO `d1_term_taxonomy` VALUES("1", "1", "category", "", "0", "9");
INSERT INTO `d1_term_taxonomy` VALUES("2", "2", "category", "", "0", "20");
INSERT INTO `d1_term_taxonomy` VALUES("3", "3", "category", "", "0", "20");
INSERT INTO `d1_term_taxonomy` VALUES("4", "4", "category", "", "0", "20");
INSERT INTO `d1_term_taxonomy` VALUES("5", "5", "category", "", "0", "20");
INSERT INTO `d1_term_taxonomy` VALUES("6", "6", "category", "", "0", "20");
INSERT INTO `d1_term_taxonomy` VALUES("7", "7", "category", "", "0", "20");
INSERT INTO `d1_term_taxonomy` VALUES("8", "8", "category", "", "0", "20");
INSERT INTO `d1_term_taxonomy` VALUES("9", "9", "category", "", "0", "20");
INSERT INTO `d1_term_taxonomy` VALUES("10", "10", "category", "", "0", "20");
INSERT INTO `d1_term_taxonomy` VALUES("11", "11", "category", "", "0", "20");
INSERT INTO `d1_term_taxonomy` VALUES("12", "12", "post_tag", "", "0", "9");
INSERT INTO `d1_term_taxonomy` VALUES("13", "13", "post_tag", "", "0", "9");
INSERT INTO `d1_term_taxonomy` VALUES("14", "14", "post_tag", "", "0", "9");
INSERT INTO `d1_term_taxonomy` VALUES("15", "15", "post_tag", "", "0", "8");
INSERT INTO `d1_term_taxonomy` VALUES("16", "16", "post_tag", "", "0", "8");
INSERT INTO `d1_term_taxonomy` VALUES("17", "17", "post_tag", "", "0", "9");
INSERT INTO `d1_term_taxonomy` VALUES("18", "18", "post_tag", "", "0", "8");
INSERT INTO `d1_term_taxonomy` VALUES("19", "19", "g1_work_tag", "", "0", "9");
INSERT INTO `d1_term_taxonomy` VALUES("20", "20", "g1_work_category", "", "0", "18");
INSERT INTO `d1_term_taxonomy` VALUES("21", "21", "g1_work_category", "", "0", "18");
INSERT INTO `d1_term_taxonomy` VALUES("22", "22", "g1_work_tag", "", "0", "9");
INSERT INTO `d1_term_taxonomy` VALUES("23", "23", "g1_work_category", "", "0", "19");
INSERT INTO `d1_term_taxonomy` VALUES("24", "24", "g1_work_tag", "", "0", "8");
INSERT INTO `d1_term_taxonomy` VALUES("25", "25", "g1_work_tag", "", "0", "8");
INSERT INTO `d1_term_taxonomy` VALUES("26", "26", "g1_work_category", "", "0", "18");
INSERT INTO `d1_term_taxonomy` VALUES("27", "27", "g1_work_category", "", "0", "18");
INSERT INTO `d1_term_taxonomy` VALUES("28", "28", "g1_work_tag", "", "0", "8");
INSERT INTO `d1_term_taxonomy` VALUES("29", "29", "g1_work_tag", "", "0", "9");
INSERT INTO `d1_term_taxonomy` VALUES("30", "30", "g1_work_category", "", "0", "18");
INSERT INTO `d1_term_taxonomy` VALUES("31", "31", "g1_relation_tag", "", "0", "0");
INSERT INTO `d1_term_taxonomy` VALUES("32", "32", "g1_work_category", "", "0", "18");
INSERT INTO `d1_term_taxonomy` VALUES("33", "33", "g1_relation_tag", "", "0", "0");
INSERT INTO `d1_term_taxonomy` VALUES("34", "34", "g1_relation_tag", "", "0", "0");
INSERT INTO `d1_term_taxonomy` VALUES("35", "35", "g1_relation_tag", "", "0", "4");
INSERT INTO `d1_term_taxonomy` VALUES("36", "36", "g1_relation_tag", "", "0", "2");
INSERT INTO `d1_term_taxonomy` VALUES("37", "37", "g1_work_tag", "", "0", "9");
INSERT INTO `d1_term_taxonomy` VALUES("38", "38", "g1_work_category", "", "0", "18");
INSERT INTO `d1_term_taxonomy` VALUES("39", "39", "g1_work_category", "", "0", "18");
INSERT INTO `d1_term_taxonomy` VALUES("40", "40", "g1_work_category", "", "0", "19");
INSERT INTO `d1_term_taxonomy` VALUES("41", "41", "g1_relation_tag", "", "0", "0");
INSERT INTO `d1_term_taxonomy` VALUES("42", "42", "nav_menu", "", "0", "37");
INSERT INTO `d1_term_taxonomy` VALUES("43", "43", "nav_menu", "", "0", "3");
INSERT INTO `d1_term_taxonomy` VALUES("44", "44", "nav_menu", "", "0", "1");
INSERT INTO `d1_term_taxonomy` VALUES("45", "45", "nav_menu", "", "0", "0");
INSERT INTO `d1_term_taxonomy` VALUES("46", "46", "post_format", "", "0", "1");
INSERT INTO `d1_term_taxonomy` VALUES("47", "47", "post_format", "", "0", "2");
INSERT INTO `d1_term_taxonomy` VALUES("48", "48", "post_format", "", "0", "5");
INSERT INTO `d1_term_taxonomy` VALUES("49", "49", "post_format", "", "0", "3");
INSERT INTO `d1_term_taxonomy` VALUES("50", "50", "post_format", "", "0", "1");
INSERT INTO `d1_term_taxonomy` VALUES("51", "51", "post_format", "", "0", "1");
INSERT INTO `d1_term_taxonomy` VALUES("52", "52", "post_format", "", "0", "1");
INSERT INTO `d1_term_taxonomy` VALUES("53", "53", "post_format", "", "0", "1");
INSERT INTO `d1_term_taxonomy` VALUES("54", "54", "post_format", "", "0", "1");
INSERT INTO `d1_term_taxonomy` VALUES("55", "55", "nav_menu", "", "0", "5");

/* INSERT TABLE DATA: d1_terms */
INSERT INTO `d1_terms` VALUES("1", "Uncategorized", "uncategorized", "0");
INSERT INTO `d1_terms` VALUES("2", "Business", "gallery-4-cols-pc", "0");
INSERT INTO `d1_terms` VALUES("3", "Entertainment", "grid-3-cols-pc", "0");
INSERT INTO `d1_terms` VALUES("4", "Finances", "grid-2-cols-side-left-gallery-pc", "0");
INSERT INTO `d1_terms` VALUES("5", "Lifestyle", "grid-2-cols-side-right-gallery-pc", "0");
INSERT INTO `d1_terms` VALUES("6", "Marketing", "grid-1-col-side-right-pc", "0");
INSERT INTO `d1_terms` VALUES("7", "News", "grid-2-cols-side-right-pc", "0");
INSERT INTO `d1_terms` VALUES("8", "Politics", "masonry-3-cols-pc", "0");
INSERT INTO `d1_terms` VALUES("9", "SEO", "grid-2-cols-side-left-pc", "0");
INSERT INTO `d1_terms` VALUES("10", "Social Media", "grid-1-col-side-left-pc", "0");
INSERT INTO `d1_terms` VALUES("11", "Technology", "grid-1-col-pc", "0");
INSERT INTO `d1_terms` VALUES("12", "awesome", "grid-2-cols-side-left-filter-pt", "0");
INSERT INTO `d1_terms` VALUES("13", "beauty", "gallery-3-cols-filter-pt", "0");
INSERT INTO `d1_terms` VALUES("14", "funny", "grid-2-cols-side-right-filter-pt", "0");
INSERT INTO `d1_terms` VALUES("15", "hardcore", "grid-4-cols-filter-pt", "0");
INSERT INTO `d1_terms` VALUES("16", "juicy", "grid-2-cols-filter-pt", "0");
INSERT INTO `d1_terms` VALUES("17", "strange", "grid-2-cols-side-right-gallery-filter-pt", "0");
INSERT INTO `d1_terms` VALUES("18", "trendy", "grid-2-cols-side-left-gallery-filter-pt", "0");
INSERT INTO `d1_terms` VALUES("19", "clean", "grid-2-cols-side-left-gallery-filter-wt", "0");
INSERT INTO `d1_terms` VALUES("20", "Creative", "grid-2-cols-side-right-wc", "0");
INSERT INTO `d1_terms` VALUES("21", "Design", "grid-1-col-wc", "0");
INSERT INTO `d1_terms` VALUES("22", "flat", "grid-2-cols-filter-wt", "0");
INSERT INTO `d1_terms` VALUES("23", "Fonts", "masonry-3-cols-wc", "0");
INSERT INTO `d1_terms` VALUES("24", "fresh", "gallery-3-cols-filter-wt", "0");
INSERT INTO `d1_terms` VALUES("25", "funky", "grid-2-cols-side-left-filter-wt", "0");
INSERT INTO `d1_terms` VALUES("26", "ID", "grid-1-col-side-right-wc", "0");
INSERT INTO `d1_terms` VALUES("27", "Logo", "grid-1-col-side-left-wc", "0");
INSERT INTO `d1_terms` VALUES("28", "minimal", "grid-2-cols-side-right-gallery-filter-wt", "0");
INSERT INTO `d1_terms` VALUES("29", "modern", "grid-2-cols-side-right-filter-wt", "0");
INSERT INTO `d1_terms` VALUES("30", "Motion", "grid-2-cols-side-right-gallery-wc", "0");
INSERT INTO `d1_terms` VALUES("31", "page-snippets", "page-snippets", "0");
INSERT INTO `d1_terms` VALUES("32", "Photo", "grid-2-cols-side-left-gallery-wc", "0");
INSERT INTO `d1_terms` VALUES("33", "r-pages-shortcodes", "r-pages-shortcodes", "0");
INSERT INTO `d1_terms` VALUES("34", "r-pages-shortcodes-2", "r-pages-shortcodes-2", "0");
INSERT INTO `d1_terms` VALUES("35", "r-posts-shortcodes", "r-posts-shortcodes", "0");
INSERT INTO `d1_terms` VALUES("36", "r-works-shortcodes", "r-works-shortcodes", "0");
INSERT INTO `d1_terms` VALUES("37", "simple", "grid-4-cols-filter-wt", "0");
INSERT INTO `d1_terms` VALUES("38", "Typo", "grid-3-cols-wc", "0");
INSERT INTO `d1_terms` VALUES("39", "Video", "grid-2-cols-side-left-wc", "0");
INSERT INTO `d1_terms` VALUES("40", "Web", "gallery-4-cols-wc", "0");
INSERT INTO `d1_terms` VALUES("41", "works-shortcodes", "works-shortcodes", "0");
INSERT INTO `d1_terms` VALUES("42", "PrimaryNavigationMenu", "primarynavigationmenu", "0");
INSERT INTO `d1_terms` VALUES("43", "FooterNavigationMenu", "footernavigationmenu", "0");
INSERT INTO `d1_terms` VALUES("44", "SecondaryNavigationMenu", "secondarynavigationmenu", "0");
INSERT INTO `d1_terms` VALUES("45", "Custom Menu 1", "custom-menu-1", "0");
INSERT INTO `d1_terms` VALUES("46", "Chat", "post-format-chat", "0");
INSERT INTO `d1_terms` VALUES("47", "Status", "post-format-status", "0");
INSERT INTO `d1_terms` VALUES("48", "Image", "post-format-image", "0");
INSERT INTO `d1_terms` VALUES("49", "Link", "post-format-link", "0");
INSERT INTO `d1_terms` VALUES("50", "Aside", "post-format-aside", "0");
INSERT INTO `d1_terms` VALUES("51", "Audio", "post-format-audio", "0");
INSERT INTO `d1_terms` VALUES("52", "Video", "post-format-video", "0");
INSERT INTO `d1_terms` VALUES("53", "Gallery", "post-format-gallery", "0");
INSERT INTO `d1_terms` VALUES("54", "Quote", "post-format-quote", "0");
INSERT INTO `d1_terms` VALUES("55", "Home", "home", "0");

/* INSERT TABLE DATA: d1_usermeta */
INSERT INTO `d1_usermeta` VALUES("1", "1", "first_name", "");
INSERT INTO `d1_usermeta` VALUES("2", "1", "last_name", "");
INSERT INTO `d1_usermeta` VALUES("3", "1", "nickname", "softons");
INSERT INTO `d1_usermeta` VALUES("4", "1", "description", "");
INSERT INTO `d1_usermeta` VALUES("5", "1", "rich_editing", "true");
INSERT INTO `d1_usermeta` VALUES("6", "1", "comment_shortcuts", "false");
INSERT INTO `d1_usermeta` VALUES("7", "1", "admin_color", "fresh");
INSERT INTO `d1_usermeta` VALUES("8", "1", "use_ssl", "0");
INSERT INTO `d1_usermeta` VALUES("9", "1", "show_admin_bar_front", "true");
INSERT INTO `d1_usermeta` VALUES("10", "1", "d1_capabilities", "a:1:{s:13:\"administrator\";b:1;}");
INSERT INTO `d1_usermeta` VALUES("11", "1", "d1_user_level", "10");
INSERT INTO `d1_usermeta` VALUES("12", "1", "dismissed_wp_pointers", "wp350_media,wp360_revisions,wp360_locks,wp390_widgets");
INSERT INTO `d1_usermeta` VALUES("13", "1", "show_welcome_panel", "0");
INSERT INTO `d1_usermeta` VALUES("14", "1", "d1_dashboard_quick_press_last_post_id", "2381");
INSERT INTO `d1_usermeta` VALUES("15", "1", "nav_menu_recently_edited", "55");
INSERT INTO `d1_usermeta` VALUES("16", "1", "managenav-menuscolumnshidden", "a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}");
INSERT INTO `d1_usermeta` VALUES("17", "1", "metaboxhidden_nav-menus", "a:6:{i:0;s:8:\"add-post\";i:1;s:11:\"add-g1_work\";i:2;s:12:\"add-post_tag\";i:3;s:15:\"add-post_format\";i:4;s:20:\"add-g1_work_category\";i:5;s:15:\"add-g1_work_tag\";}");
INSERT INTO `d1_usermeta` VALUES("18", "1", "d1_user-settings", "editor=tinymce&libraryContent=browse&imgsize=full&mfold=o");
INSERT INTO `d1_usermeta` VALUES("19", "1", "d1_user-settings-time", "1416023327");
INSERT INTO `d1_usermeta` VALUES("20", "2", "first_name", "");
INSERT INTO `d1_usermeta` VALUES("21", "2", "last_name", "");
INSERT INTO `d1_usermeta` VALUES("22", "2", "nickname", "admin");
INSERT INTO `d1_usermeta` VALUES("23", "2", "description", "");
INSERT INTO `d1_usermeta` VALUES("24", "2", "rich_editing", "true");
INSERT INTO `d1_usermeta` VALUES("25", "2", "comment_shortcuts", "false");
INSERT INTO `d1_usermeta` VALUES("26", "2", "admin_color", "fresh");
INSERT INTO `d1_usermeta` VALUES("27", "2", "use_ssl", "0");
INSERT INTO `d1_usermeta` VALUES("28", "2", "show_admin_bar_front", "true");
INSERT INTO `d1_usermeta` VALUES("29", "2", "d1_capabilities", "a:1:{s:6:\"editor\";b:1;}");
INSERT INTO `d1_usermeta` VALUES("30", "2", "d1_user_level", "7");
INSERT INTO `d1_usermeta` VALUES("31", "2", "dismissed_wp_pointers", "wp350_media,wp360_revisions,wp360_locks,wp390_widgets");
INSERT INTO `d1_usermeta` VALUES("32", "2", "d1_dashboard_quick_press_last_post_id", "2215");
INSERT INTO `d1_usermeta` VALUES("33", "2", "d1_user-settings", "editor=tinymce&libraryContent=browse&urlbutton=file");
INSERT INTO `d1_usermeta` VALUES("34", "2", "d1_user-settings-time", "1413519982");

/* INSERT TABLE DATA: d1_users */
INSERT INTO `d1_users` VALUES("1", "softons", "$P$BqKIjewpFcbNXH48M1tIzksVDokoBt.", "softons", "info@softons.in", "", "2014-08-21 17:58:01", "", "0", "softons");
INSERT INTO `d1_users` VALUES("2", "admin", "$P$BtkjCBCog0JaYbGbOR97m601HHNPZD.", "admin", "enquiry@softons.com", "", "2014-10-16 07:05:18", "", "0", "admin");

/* INSERT TABLE DATA: wp_comments */
INSERT INTO `wp_comments` VALUES("1", "1", "Mr WordPress", "", "https://wordpress.org/", "", "2014-11-14 09:47:06", "2014-11-14 09:47:06", "Hi, this is a comment.\nTo delete a comment, just log in and view the post&#039;s comments. There you will have the option to edit or delete them.", "0", "1", "", "", "0", "0");

/* INSERT TABLE DATA: wp_duplicator_packages */
INSERT INTO `wp_duplicator_packages` VALUES("8", "20160322_hrdintegratedmanpowersolutio", "56f13ef444afe3855160322124748", "20", "2016-03-22 12:48:02", "softons", "O:11:\"DUP_Package\":16:{s:2:\"ID\";i:8;s:4:\"Name\";s:37:\"20160322_hrdintegratedmanpowersolutio\";s:4:\"Hash\";s:29:\"56f13ef444afe3855160322124748\";s:8:\"NameHash\";s:67:\"20160322_hrdintegratedmanpowersolutio_56f13ef444afe3855160322124748\";s:7:\"Version\";s:5:\"0.5.8\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:48:\"/home/softonscu/public_html/hrd/wp-snapshots/tmp\";s:8:\"StoreURL\";s:38:\"http://hrd.softons.cu.cc/wp-snapshots/\";s:8:\"ScanFile\";s:77:\"20160322_hrdintegratedmanpowersolutio_56f13ef444afe3855160322124748_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":17:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"File\";s:79:\"20160322_hrdintegratedmanpowersolutio_56f13ef444afe3855160322124748_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:31:\"/home/softonscu/public_html/hrd\";s:4:\"Size\";i:0;s:12:\"WarnFileSize\";a:0:{}s:12:\"WarnFileName\";a:0:{}s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:5:\"Links\";a:0:{}s:8:\"OmitDirs\";a:0:{}s:9:\"OmitFiles\";a:0:{}s:10:\"\0*\0Package\";O:11:\"DUP_Package\":16:{s:2:\"ID\";N;s:4:\"Name\";s:37:\"20160322_hrdintegratedmanpowersolutio\";s:4:\"Hash\";s:29:\"56f13ef444afe3855160322124748\";s:8:\"NameHash\";s:67:\"20160322_hrdintegratedmanpowersolutio_56f13ef444afe3855160322124748\";s:7:\"Version\";s:5:\"0.5.8\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:48:\"/home/softonscu/public_html/hrd/wp-snapshots/tmp\";s:8:\"StoreURL\";s:38:\"http://hrd.softons.cu.cc/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";r:15;s:9:\"Installer\";O:13:\"DUP_Installer\":11:{s:4:\"File\";s:81:\"20160322_hrdintegratedmanpowersolutio_56f13ef444afe3855160322124748_installer.php\";s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";r:30;}s:8:\"Database\";O:12:\"DUP_Database\":9:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";s:80:\"20160322_hrdintegratedmanpowersolutio_56f13ef444afe3855160322124748_database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"\0*\0Package\";r:1;s:25:\"\0DUP_Database\0dbStorePath\";N;}}s:28:\"\0DUP_Archive\0filterDirsArray\";a:0:{}s:28:\"\0DUP_Archive\0filterExtsArray\";a:0:{}}s:9:\"Installer\";r:45;s:8:\"Database\";r:57;}");

/* INSERT TABLE DATA: wp_options */
INSERT INTO `wp_options` VALUES("1", "siteurl", "http://hrd.softons.cu.cc", "yes");
INSERT INTO `wp_options` VALUES("2", "home", "http://hrd.softons.cu.cc", "yes");
INSERT INTO `wp_options` VALUES("3", "blogname", "HRD Integrated Manpower Solutions", "yes");
INSERT INTO `wp_options` VALUES("4", "blogdescription", "Hosur", "yes");
INSERT INTO `wp_options` VALUES("5", "users_can_register", "0", "yes");
INSERT INTO `wp_options` VALUES("6", "admin_email", "info@softons.com", "yes");
INSERT INTO `wp_options` VALUES("7", "start_of_week", "1", "yes");
INSERT INTO `wp_options` VALUES("8", "use_balanceTags", "0", "yes");
INSERT INTO `wp_options` VALUES("9", "use_smilies", "1", "yes");
INSERT INTO `wp_options` VALUES("10", "require_name_email", "1", "yes");
INSERT INTO `wp_options` VALUES("11", "comments_notify", "1", "yes");
INSERT INTO `wp_options` VALUES("12", "posts_per_rss", "10", "yes");
INSERT INTO `wp_options` VALUES("13", "rss_use_excerpt", "0", "yes");
INSERT INTO `wp_options` VALUES("14", "mailserver_url", "mail.example.com", "yes");
INSERT INTO `wp_options` VALUES("15", "mailserver_login", "login@example.com", "yes");
INSERT INTO `wp_options` VALUES("16", "mailserver_pass", "password", "yes");
INSERT INTO `wp_options` VALUES("17", "mailserver_port", "110", "yes");
INSERT INTO `wp_options` VALUES("18", "default_category", "1", "yes");
INSERT INTO `wp_options` VALUES("19", "default_comment_status", "open", "yes");
INSERT INTO `wp_options` VALUES("20", "default_ping_status", "open", "yes");
INSERT INTO `wp_options` VALUES("21", "default_pingback_flag", "1", "yes");
INSERT INTO `wp_options` VALUES("22", "posts_per_page", "10", "yes");
INSERT INTO `wp_options` VALUES("23", "date_format", "F j, Y", "yes");
INSERT INTO `wp_options` VALUES("24", "time_format", "g:i a", "yes");
INSERT INTO `wp_options` VALUES("25", "links_updated_date_format", "F j, Y g:i a", "yes");
INSERT INTO `wp_options` VALUES("26", "comment_moderation", "0", "yes");
INSERT INTO `wp_options` VALUES("27", "moderation_notify", "1", "yes");
INSERT INTO `wp_options` VALUES("28", "permalink_structure", "/%postname%/", "yes");
INSERT INTO `wp_options` VALUES("29", "gzipcompression", "0", "yes");
INSERT INTO `wp_options` VALUES("30", "hack_file", "0", "yes");
INSERT INTO `wp_options` VALUES("31", "blog_charset", "UTF-8", "yes");
INSERT INTO `wp_options` VALUES("32", "moderation_keys", "", "no");
INSERT INTO `wp_options` VALUES("33", "active_plugins", "a:5:{i:0;s:36:\"contact-form-7/wp-contact-form-7.php\";i:1;s:25:\"duplicator/duplicator.php\";i:2;s:37:\"login-customizer/login-customizer.php\";i:3;s:31:\"wc-shortcodes/wc-shortcodes.php\";i:4;s:41:\"wordpress-importer/wordpress-importer.php\";}", "yes");
INSERT INTO `wp_options` VALUES("34", "category_base", "", "yes");
INSERT INTO `wp_options` VALUES("35", "ping_sites", "http://rpc.pingomatic.com/", "yes");
INSERT INTO `wp_options` VALUES("36", "advanced_edit", "0", "yes");
INSERT INTO `wp_options` VALUES("37", "comment_max_links", "2", "yes");
INSERT INTO `wp_options` VALUES("38", "gmt_offset", "0", "yes");
INSERT INTO `wp_options` VALUES("39", "default_email_category", "1", "yes");
INSERT INTO `wp_options` VALUES("40", "recently_edited", "a:4:{i:0;s:68:\"/home/softonscu/public_html/hrd/wp-content/themes/Softons/footer.php\";i:1;s:76:\"/home/softonscu/public_html/hrd/wp-content/themes/Softons/sidebar-footer.php\";i:2;s:67:\"/home/softonscu/public_html/hrd/wp-content/themes/Softons/style.css\";i:4;s:0:\"\";}", "no");
INSERT INTO `wp_options` VALUES("41", "template", "Softons", "yes");
INSERT INTO `wp_options` VALUES("42", "stylesheet", "Softons", "yes");
INSERT INTO `wp_options` VALUES("43", "comment_whitelist", "1", "yes");
INSERT INTO `wp_options` VALUES("44", "blacklist_keys", "", "no");
INSERT INTO `wp_options` VALUES("45", "comment_registration", "0", "yes");
INSERT INTO `wp_options` VALUES("46", "html_type", "text/html", "yes");
INSERT INTO `wp_options` VALUES("47", "use_trackback", "0", "yes");
INSERT INTO `wp_options` VALUES("48", "default_role", "subscriber", "yes");
INSERT INTO `wp_options` VALUES("49", "db_version", "29632", "yes");
INSERT INTO `wp_options` VALUES("50", "uploads_use_yearmonth_folders", "1", "yes");
INSERT INTO `wp_options` VALUES("51", "upload_path", "", "yes");
INSERT INTO `wp_options` VALUES("52", "blog_public", "1", "yes");
INSERT INTO `wp_options` VALUES("53", "default_link_category", "2", "yes");
INSERT INTO `wp_options` VALUES("54", "show_on_front", "page", "yes");
INSERT INTO `wp_options` VALUES("55", "tag_base", "", "yes");
INSERT INTO `wp_options` VALUES("56", "show_avatars", "1", "yes");
INSERT INTO `wp_options` VALUES("57", "avatar_rating", "G", "yes");
INSERT INTO `wp_options` VALUES("58", "upload_url_path", "", "yes");
INSERT INTO `wp_options` VALUES("59", "thumbnail_size_w", "150", "yes");
INSERT INTO `wp_options` VALUES("60", "thumbnail_size_h", "150", "yes");
INSERT INTO `wp_options` VALUES("61", "thumbnail_crop", "1", "yes");
INSERT INTO `wp_options` VALUES("62", "medium_size_w", "300", "yes");
INSERT INTO `wp_options` VALUES("63", "medium_size_h", "300", "yes");
INSERT INTO `wp_options` VALUES("64", "avatar_default", "mystery", "yes");
INSERT INTO `wp_options` VALUES("65", "large_size_w", "1024", "yes");
INSERT INTO `wp_options` VALUES("66", "large_size_h", "1024", "yes");
INSERT INTO `wp_options` VALUES("67", "image_default_link_type", "file", "yes");
INSERT INTO `wp_options` VALUES("68", "image_default_size", "", "yes");
INSERT INTO `wp_options` VALUES("69", "image_default_align", "", "yes");
INSERT INTO `wp_options` VALUES("70", "close_comments_for_old_posts", "0", "yes");
INSERT INTO `wp_options` VALUES("71", "close_comments_days_old", "14", "yes");
INSERT INTO `wp_options` VALUES("72", "thread_comments", "1", "yes");
INSERT INTO `wp_options` VALUES("73", "thread_comments_depth", "5", "yes");
INSERT INTO `wp_options` VALUES("74", "page_comments", "0", "yes");
INSERT INTO `wp_options` VALUES("75", "comments_per_page", "50", "yes");
INSERT INTO `wp_options` VALUES("76", "default_comments_page", "newest", "yes");
INSERT INTO `wp_options` VALUES("77", "comment_order", "asc", "yes");
INSERT INTO `wp_options` VALUES("78", "sticky_posts", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("79", "widget_categories", "a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("80", "widget_text", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("81", "widget_rss", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("82", "uninstall_plugins", "a:0:{}", "no");
INSERT INTO `wp_options` VALUES("83", "timezone_string", "", "yes");
INSERT INTO `wp_options` VALUES("84", "page_for_posts", "0", "yes");
INSERT INTO `wp_options` VALUES("85", "page_on_front", "22", "yes");
INSERT INTO `wp_options` VALUES("86", "default_post_format", "0", "yes");
INSERT INTO `wp_options` VALUES("87", "link_manager_enabled", "0", "yes");
INSERT INTO `wp_options` VALUES("88", "initial_db_version", "29630", "yes");
INSERT INTO `wp_options` VALUES("89", "wp_user_roles", "a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{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:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}", "yes");
INSERT INTO `wp_options` VALUES("90", "widget_search", "a:2:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("91", "widget_recent-posts", "a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("92", "widget_recent-comments", "a:2:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("93", "widget_archives", "a:2:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("94", "widget_meta", "a:2:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("95", "sidebars_widgets", "a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}s:13:\"array_version\";i:3;}", "yes");
INSERT INTO `wp_options` VALUES("96", "cron", "a:4:{i:1458683299;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:1458710587;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:1458726508;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");
INSERT INTO `wp_options` VALUES("1024", "_transient_random_seed", "9ef71e7041415724e6e454632560ff68", "yes");
INSERT INTO `wp_options` VALUES("138", "shop_catalog_image_size", "a:3:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";s:4:\"crop\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("319", "wpcf7", "a:1:{s:7:\"version\";s:5:\"4.0.2\";}", "yes");
INSERT INTO `wp_options` VALUES("350", "wc_shortcodes_current_version", "1.54", "yes");
INSERT INTO `wp_options` VALUES("351", "wc_shortcodes_social_icons_display", "a:14:{s:8:\"facebook\";s:8:\"Facebook\";s:6:\"google\";s:6:\"Google\";s:7:\"twitter\";s:7:\"Twitter\";s:9:\"pinterest\";s:9:\"Pinterest\";s:9:\"instagram\";s:9:\"Instagram\";s:9:\"bloglovin\";s:9:\"BlogLovin\";s:6:\"flickr\";s:6:\"Flickr\";s:3:\"rss\";s:3:\"RSS\";s:5:\"email\";s:5:\"Email\";s:7:\"custom1\";s:8:\"Custom 1\";s:7:\"custom2\";s:8:\"Custom 2\";s:7:\"custom3\";s:8:\"Custom 3\";s:7:\"custom4\";s:8:\"Custom 4\";s:7:\"custom5\";s:8:\"Custom 5\";}", "yes");
INSERT INTO `wp_options` VALUES("352", "wc_shortcodes_social_icons_format", "image", "yes");
INSERT INTO `wp_options` VALUES("353", "wc_shortcodes_facebook_link", "", "yes");
INSERT INTO `wp_options` VALUES("354", "wc_shortcodes_facebook_font_icon", "fa-facebook", "yes");
INSERT INTO `wp_options` VALUES("355", "wc_shortcodes_facebook_icon", "http://hrd.softons.cu.cc/wp-content/plugins/wc-shortcodes/includes/img/facebook.png", "yes");
INSERT INTO `wp_options` VALUES("356", "wc_shortcodes_twitter_link", "", "yes");
INSERT INTO `wp_options` VALUES("357", "wc_shortcodes_twitter_font_icon", "fa-twitter", "yes");
INSERT INTO `wp_options` VALUES("358", "wc_shortcodes_twitter_icon", "http://hrd.softons.cu.cc/wp-content/plugins/wc-shortcodes/includes/img/twitter.png", "yes");
INSERT INTO `wp_options` VALUES("359", "wc_shortcodes_pinterest_link", "", "yes");
INSERT INTO `wp_options` VALUES("360", "wc_shortcodes_pinterest_font_icon", "fa-pinterest", "yes");
INSERT INTO `wp_options` VALUES("361", "wc_shortcodes_pinterest_icon", "http://hrd.softons.cu.cc/wp-content/plugins/wc-shortcodes/includes/img/pinterest.png", "yes");
INSERT INTO `wp_options` VALUES("362", "wc_shortcodes_google_link", "", "yes");
INSERT INTO `wp_options` VALUES("363", "wc_shortcodes_google_font_icon", "fa-google-plus", "yes");
INSERT INTO `wp_options` VALUES("364", "wc_shortcodes_google_icon", "http://hrd.softons.cu.cc/wp-content/plugins/wc-shortcodes/includes/img/google.png", "yes");
INSERT INTO `wp_options` VALUES("365", "wc_shortcodes_bloglovin_link", "", "yes");
INSERT INTO `wp_options` VALUES("366", "wc_shortcodes_bloglovin_font_icon", "fa-plus-square", "yes");
INSERT INTO `wp_options` VALUES("367", "wc_shortcodes_bloglovin_icon", "http://hrd.softons.cu.cc/wp-content/plugins/wc-shortcodes/includes/img/bloglovin.png", "yes");
INSERT INTO `wp_options` VALUES("368", "wc_shortcodes_email_link", "", "yes");
INSERT INTO `wp_options` VALUES("369", "wc_shortcodes_email_font_icon", "fa-envelope", "yes");
INSERT INTO `wp_options` VALUES("370", "wc_shortcodes_email_icon", "http://hrd.softons.cu.cc/wp-content/plugins/wc-shortcodes/includes/img/email.png", "yes");
INSERT INTO `wp_options` VALUES("371", "wc_shortcodes_flickr_link", "", "yes");
INSERT INTO `wp_options` VALUES("372", "wc_shortcodes_flickr_font_icon", "fa-flickr", "yes");
INSERT INTO `wp_options` VALUES("373", "wc_shortcodes_flickr_icon", "http://hrd.softons.cu.cc/wp-content/plugins/wc-shortcodes/includes/img/flickr.png", "yes");
INSERT INTO `wp_options` VALUES("374", "wc_shortcodes_instagram_link", "", "yes");
INSERT INTO `wp_options` VALUES("375", "wc_shortcodes_instagram_font_icon", "fa-instagram", "yes");
INSERT INTO `wp_options` VALUES("376", "wc_shortcodes_instagram_icon", "http://hrd.softons.cu.cc/wp-content/plugins/wc-shortcodes/includes/img/instagram.png", "yes");
INSERT INTO `wp_options` VALUES("377", "wc_shortcodes_rss_link", "", "yes");
INSERT INTO `wp_options` VALUES("378", "wc_shortcodes_rss_font_icon", "fa-rss", "yes");
INSERT INTO `wp_options` VALUES("379", "wc_shortcodes_rss_icon", "http://hrd.softons.cu.cc/wp-content/plugins/wc-shortcodes/includes/img/rss.png", "yes");
INSERT INTO `wp_options` VALUES("380", "wc_shortcodes_custom1_link", "", "yes");
INSERT INTO `wp_options` VALUES("381", "wc_shortcodes_custom1_font_icon", "fa-camera", "yes");
INSERT INTO `wp_options` VALUES("382", "wc_shortcodes_custom1_icon", "http://hrd.softons.cu.cc/wp-content/plugins/wc-shortcodes/includes/img/picasa.png", "yes");
INSERT INTO `wp_options` VALUES("383", "wc_shortcodes_custom2_link", "", "yes");
INSERT INTO `wp_options` VALUES("384", "wc_shortcodes_custom2_font_icon", "fa-shopping-cart", "yes");
INSERT INTO `wp_options` VALUES("385", "wc_shortcodes_custom2_icon", "http://hrd.softons.cu.cc/wp-content/plugins/wc-shortcodes/includes/img/shopping.png", "yes");
INSERT INTO `wp_options` VALUES("386", "wc_shortcodes_custom3_link", "", "yes");
INSERT INTO `wp_options` VALUES("387", "wc_shortcodes_custom3_font_icon", "fa-youtube", "yes");
INSERT INTO `wp_options` VALUES("388", "wc_shortcodes_custom3_icon", "http://hrd.softons.cu.cc/wp-content/plugins/wc-shortcodes/includes/img/youtube.png", "yes");
INSERT INTO `wp_options` VALUES("389", "wc_shortcodes_custom4_link", "", "yes");
INSERT INTO `wp_options` VALUES("390", "wc_shortcodes_custom4_font_icon", "fa-dollar", "yes");
INSERT INTO `wp_options` VALUES("391", "wc_shortcodes_custom4_icon", "http://hrd.softons.cu.cc/wp-content/plugins/wc-shortcodes/includes/img/etsy.png", "yes");
INSERT INTO `wp_options` VALUES("392", "wc_shortcodes_custom5_link", "", "yes");
INSERT INTO `wp_options` VALUES("393", "wc_shortcodes_custom5_font_icon", "fa-tumblr", "yes");
INSERT INTO `wp_options` VALUES("394", "wc_shortcodes_custom5_icon", "http://hrd.softons.cu.cc/wp-content/plugins/wc-shortcodes/includes/img/tumblr.png", "yes");
INSERT INTO `wp_options` VALUES("395", "wc_shortcodes_share_buttons_display", "a:5:{s:9:\"pinterest\";s:9:\"Pinterest\";s:8:\"facebook\";s:8:\"Facebook\";s:7:\"twitter\";s:7:\"Twitter\";s:6:\"google\";s:6:\"Google\";s:5:\"email\";s:5:\"Email\";}", "yes");
INSERT INTO `wp_options` VALUES("396", "wc_shortcodes_share_buttons_format", "image", "yes");
INSERT INTO `wp_options` VALUES("397", "wc_shortcodes_facebook_share_text", "Share", "yes");
INSERT INTO `wp_options` VALUES("398", "wc_shortcodes_facebook_share_font_icon", "fa-facebook", "yes");
INSERT INTO `wp_options` VALUES("399", "wc_shortcodes_facebook_share_icon", "http://hrd.softons.cu.cc/wp-content/plugins/wc-shortcodes/includes/img/facebook.png", "yes");
INSERT INTO `wp_options` VALUES("400", "wc_shortcodes_twitter_share_text", "Tweet", "yes");
INSERT INTO `wp_options` VALUES("401", "wc_shortcodes_twitter_share_font_icon", "fa-twitter", "yes");
INSERT INTO `wp_options` VALUES("402", "wc_shortcodes_twitter_share_icon", "http://hrd.softons.cu.cc/wp-content/plugins/wc-shortcodes/includes/img/twitter.png", "yes");
INSERT INTO `wp_options` VALUES("403", "wc_shortcodes_pinterest_share_text", "Pin it", "yes");
INSERT INTO `wp_options` VALUES("404", "wc_shortcodes_pinterest_share_font_icon", "fa-pinterest", "yes");
INSERT INTO `wp_options` VALUES("405", "wc_shortcodes_pinterest_share_icon", "http://hrd.softons.cu.cc/wp-content/plugins/wc-shortcodes/includes/img/pinterest.png", "yes");
INSERT INTO `wp_options` VALUES("406", "wc_shortcodes_google_share_text", "Share", "yes");
INSERT INTO `wp_options` VALUES("407", "wc_shortcodes_google_share_font_icon", "fa-google-plus", "yes");
INSERT INTO `wp_options` VALUES("408", "wc_shortcodes_google_share_icon", "http://hrd.softons.cu.cc/wp-content/plugins/wc-shortcodes/includes/img/google.png", "yes");
INSERT INTO `wp_options` VALUES("409", "wc_shortcodes_email_share_text", "Email", "yes");
INSERT INTO `wp_options` VALUES("410", "wc_shortcodes_email_share_font_icon", "fa-envelope", "yes");
INSERT INTO `wp_options` VALUES("411", "wc_shortcodes_email_share_icon", "http://hrd.softons.cu.cc/wp-content/plugins/wc-shortcodes/includes/img/email.png", "yes");
INSERT INTO `wp_options` VALUES("412", "wc_shortcodes_rsvp_email", "info@softons.com", "yes");
INSERT INTO `wp_options` VALUES("413", "wc_shortcodes_rsvp_email_title", "New RSVP - Nandavana", "yes");
INSERT INTO `wp_options` VALUES("414", "wc_shortcodes_rsvp_success_message", "Thanks for attending! We will see you at our wedding.", "yes");
INSERT INTO `wp_options` VALUES("415", "wc_shortcodes_rsvp_name_title", "Your Name", "yes");
INSERT INTO `wp_options` VALUES("416", "wc_shortcodes_rsvp_number_title", "Number of Guests", "yes");
INSERT INTO `wp_options` VALUES("417", "wc_shortcodes_rsvp_number_options", "1\n2\n3\n4\n5", "yes");
INSERT INTO `wp_options` VALUES("418", "wc_shortcodes_rsvp_event_title", "You Will Attend...", "yes");
INSERT INTO `wp_options` VALUES("419", "wc_shortcodes_rsvp_event_options", "All Events\nMain Ceremony\nWedding Party", "yes");
INSERT INTO `wp_options` VALUES("420", "wc_shortcodes_rsvp_button_title", "I Am Attending", "yes");
INSERT INTO `wp_options` VALUES("421", "wc_shortcodes_enable_shortcode_css", "1", "yes");
INSERT INTO `wp_options` VALUES("422", "wc_shortcodes_enable_font_awesome", "1", "yes");
INSERT INTO `wp_options` VALUES("270", "auto_core_update_notified", "a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:16:\"info@softons.com\";s:7:\"version\";s:6:\"4.0.10\";s:9:\"timestamp\";i:1457329433;}", "yes");
INSERT INTO `wp_options` VALUES("531", "duplicator_version_plugin", "0.5.8", "yes");
INSERT INTO `wp_options` VALUES("1012", "db_upgraded", "", "yes");
INSERT INTO `wp_options` VALUES("135", "current_theme", "Divi", "yes");
INSERT INTO `wp_options` VALUES("136", "theme_mods_Divi", "a:10:{i:0;b:0;s:30:\"et_pb_predefined_layouts_added\";s:2:\"on\";s:21:\"et_pb_replace_content\";s:2:\"on\";s:16:\"background_color\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:17:\"background_repeat\";s:6:\"repeat\";s:21:\"background_position_x\";s:4:\"left\";s:21:\"background_attachment\";s:6:\"scroll\";s:36:\"et_pb_predefined_layouts_updated_2_0\";s:2:\"on\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1416043595;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}}}}", "yes");
INSERT INTO `wp_options` VALUES("137", "theme_switched", "", "yes");
INSERT INTO `wp_options` VALUES("139", "shop_single_image_size", "a:3:{s:5:\"width\";s:3:\"510\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";i:0;}", "yes");
INSERT INTO `wp_options` VALUES("140", "shop_thumbnail_image_size", "a:3:{s:5:\"width\";s:3:\"157\";s:6:\"height\";s:3:\"157\";s:4:\"crop\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("141", "et_images_temp_folder", "/home/softonscu/public_html/hrd/wp-content/uploads/et_temp", "yes");
INSERT INTO `wp_options` VALUES("142", "et_schedule_clean_images_last_time", "1458558769", "yes");
INSERT INTO `wp_options` VALUES("147", "recently_activated", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("1022", "rewrite_rules", "a:111:{s:10:\"project/?$\";s:27:\"index.php?post_type=project\";s:40:\"project/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:35:\"project/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:27:\"project/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=project&paged=$matches[1]\";s: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:35:\"project/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"project/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"project/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"project/([^/]+)/trackback/?$\";s:34:\"index.php?project=$matches[1]&tb=1\";s:48:\"project/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:43:\"project/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:36:\"project/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&paged=$matches[2]\";s:43:\"project/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&cpage=$matches[2]\";s:28:\"project/([^/]+)(/[0-9]+)?/?$\";s:46:\"index.php?project=$matches[1]&page=$matches[2]\";s:24:\"project/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"project/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"project/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"project_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:52:\"project_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:45:\"project_category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?project_category=$matches[1]&paged=$matches[2]\";s:27:\"project_category/([^/]+)/?$\";s:38:\"index.php?project_category=$matches[1]\";s:52:\"project_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:47:\"project_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:40:\"project_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?project_tag=$matches[1]&paged=$matches[2]\";s:22:\"project_tag/([^/]+)/?$\";s:33:\"index.php?project_tag=$matches[1]\";s:40:\"et_pb_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"et_pb_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"et_pb_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"et_pb_layout/([^/]+)/trackback/?$\";s:54:\"index.php?post_type=et_pb_layout&name=$matches[1]&tb=1\";s:41:\"et_pb_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&paged=$matches[2]\";s:48:\"et_pb_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&cpage=$matches[2]\";s:33:\"et_pb_layout/([^/]+)(/[0-9]+)?/?$\";s:66:\"index.php?post_type=et_pb_layout&name=$matches[1]&page=$matches[2]\";s:29:\"et_pb_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"et_pb_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"et_pb_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s: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:39:\"index.php?&page_id=22&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");
INSERT INTO `wp_options` VALUES("176", "widget_pages", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("177", "widget_calendar", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("178", "widget_tag_cloud", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("179", "widget_nav_menu", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("180", "widget_aboutmewidget", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("181", "widget_adsensewidget", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("182", "widget_advwidget", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("195", "theme_mods_twentyfourteen", "a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1416043602;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}", "yes");
INSERT INTO `wp_options` VALUES("184", "et_divi", "a:103:{s:10:\"link_color\";s:7:\"#7EBEC5\";s:10:\"font_color\";s:7:\"#666666\";s:12:\"accent_color\";s:7:\"#7EBEC5\";s:9:\"footer_bg\";s:7:\"#2e2e2e\";s:9:\"menu_link\";s:7:\"#666666\";s:16:\"menu_link_active\";s:7:\"#7CBEC6\";s:12:\"heading_font\";s:4:\"none\";s:9:\"body_font\";s:4:\"none\";s:13:\"color_schemes\";s:5:\"green\";s:15:\"divi_1_3_images\";s:7:\"checked\";s:9:\"divi_logo\";s:65:\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/LOGO-HRD3.png\";s:12:\"divi_favicon\";s:64:\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/favicon1.png\";s:14:\"divi_fixed_nav\";s:2:\"on\";s:15:\"divi_grab_image\";s:5:\"false\";s:15:\"divi_blog_style\";s:5:\"false\";s:22:\"divi_shop_page_sidebar\";s:16:\"et_right_sidebar\";s:22:\"divi_mailchimp_api_key\";s:0:\"\";s:31:\"divi_regenerate_mailchimp_lists\";s:5:\"false\";s:28:\"divi_regenerate_aweber_lists\";s:5:\"false\";s:23:\"divi_show_facebook_icon\";s:2:\"on\";s:22:\"divi_show_twitter_icon\";s:5:\"false\";s:21:\"divi_show_google_icon\";s:5:\"false\";s:18:\"divi_show_rss_icon\";s:5:\"false\";s:17:\"divi_facebook_url\";s:1:\"#\";s:16:\"divi_twitter_url\";s:1:\"#\";s:15:\"divi_google_url\";s:1:\"#\";s:12:\"divi_rss_url\";s:0:\"\";s:17:\"divi_catnum_posts\";i:6;s:21:\"divi_archivenum_posts\";i:5;s:20:\"divi_searchnum_posts\";i:5;s:17:\"divi_tagnum_posts\";i:5;s:16:\"divi_date_format\";s:6:\"M j, Y\";s:16:\"divi_use_excerpt\";s:5:\"false\";s:26:\"divi_responsive_shortcodes\";s:2:\"on\";s:33:\"divi_gf_enable_all_character_sets\";s:5:\"false\";s:16:\"divi_back_to_top\";s:5:\"false\";s:18:\"divi_smooth_scroll\";s:5:\"false\";s:15:\"divi_custom_css\";s:0:\"\";s:21:\"divi_enable_dropdowns\";s:2:\"on\";s:14:\"divi_home_link\";s:2:\"on\";s:15:\"divi_sort_pages\";s:10:\"post_title\";s:15:\"divi_order_page\";s:3:\"asc\";s:22:\"divi_tiers_shown_pages\";i:3;s:32:\"divi_enable_dropdowns_categories\";s:2:\"on\";s:21:\"divi_categories_empty\";s:2:\"on\";s:27:\"divi_tiers_shown_categories\";i:3;s:13:\"divi_sort_cat\";s:4:\"name\";s:14:\"divi_order_cat\";s:3:\"asc\";s:20:\"divi_disable_toptier\";s:5:\"false\";s:14:\"divi_postinfo2\";a:4:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";}s:22:\"divi_show_postcomments\";s:2:\"on\";s:15:\"divi_thumbnails\";s:2:\"on\";s:20:\"divi_page_thumbnails\";s:5:\"false\";s:23:\"divi_show_pagescomments\";s:5:\"false\";s:14:\"divi_postinfo1\";a:3:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";}s:21:\"divi_thumbnails_index\";s:2:\"on\";s:19:\"divi_seo_home_title\";s:5:\"false\";s:25:\"divi_seo_home_description\";s:5:\"false\";s:22:\"divi_seo_home_keywords\";s:5:\"false\";s:23:\"divi_seo_home_canonical\";s:5:\"false\";s:23:\"divi_seo_home_titletext\";s:0:\"\";s:29:\"divi_seo_home_descriptiontext\";s:0:\"\";s:26:\"divi_seo_home_keywordstext\";s:0:\"\";s:18:\"divi_seo_home_type\";s:27:\"BlogName | Blog description\";s:22:\"divi_seo_home_separate\";s:3:\" | \";s:21:\"divi_seo_single_title\";s:5:\"false\";s:27:\"divi_seo_single_description\";s:5:\"false\";s:24:\"divi_seo_single_keywords\";s:5:\"false\";s:25:\"divi_seo_single_canonical\";s:5:\"false\";s:27:\"divi_seo_single_field_title\";s:9:\"seo_title\";s:33:\"divi_seo_single_field_description\";s:15:\"seo_description\";s:30:\"divi_seo_single_field_keywords\";s:12:\"seo_keywords\";s:20:\"divi_seo_single_type\";s:21:\"Post title | BlogName\";s:24:\"divi_seo_single_separate\";s:3:\" | \";s:24:\"divi_seo_index_canonical\";s:5:\"false\";s:26:\"divi_seo_index_description\";s:5:\"false\";s:19:\"divi_seo_index_type\";s:24:\"Category name | BlogName\";s:23:\"divi_seo_index_separate\";s:3:\" | \";s:28:\"divi_integrate_header_enable\";s:2:\"on\";s:26:\"divi_integrate_body_enable\";s:2:\"on\";s:31:\"divi_integrate_singletop_enable\";s:2:\"on\";s:34:\"divi_integrate_singlebottom_enable\";s:2:\"on\";s:21:\"divi_integration_head\";s:0:\"\";s:21:\"divi_integration_body\";s:0:\"\";s:27:\"divi_integration_single_top\";s:0:\"\";s:30:\"divi_integration_single_bottom\";s:0:\"\";s:15:\"divi_468_enable\";s:5:\"false\";s:14:\"divi_468_image\";s:0:\"\";s:12:\"divi_468_url\";s:0:\"\";s:16:\"divi_468_adsense\";s:0:\"\";s:12:\"boxed_layout\";s:0:\"\";s:16:\"cover_background\";s:2:\"on\";s:12:\"vertical_nav\";s:0:\"\";s:24:\"show_header_social_icons\";s:0:\"\";s:24:\"show_footer_social_icons\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:12:\"header_style\";s:4:\"left\";s:12:\"phone_number\";s:0:\"\";s:12:\"header_email\";s:0:\"\";s:14:\"primary_nav_bg\";s:7:\"#ffffff\";s:22:\"primary_nav_text_color\";s:4:\"dark\";s:16:\"secondary_nav_bg\";s:7:\"#7EBEC5\";s:24:\"secondary_nav_text_color\";s:5:\"light\";}", "yes");
INSERT INTO `wp_options` VALUES("1016", "duplicator_settings", "a:9:{s:7:\"version\";s:5:\"0.5.8\";s:18:\"uninstall_settings\";b:1;s:15:\"uninstall_files\";b:1;s:16:\"uninstall_tables\";b:1;s:13:\"package_debug\";b:0;s:17:\"package_mysqldump\";b:0;s:22:\"package_mysqldump_path\";s:0:\"\";s:17:\"package_zip_flush\";b:0;s:20:\"storage_htaccess_off\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("196", "theme_mods_Softons", "a:10:{i:0;b:0;s:30:\"et_pb_predefined_layouts_added\";s:2:\"on\";s:36:\"et_pb_predefined_layouts_updated_2_0\";s:2:\"on\";s:18:\"nav_menu_locations\";a:3:{s:12:\"primary-menu\";i:2;s:14:\"secondary-menu\";i:0;s:11:\"footer-menu\";i:0;}s:16:\"background_color\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:17:\"background_repeat\";s:6:\"repeat\";s:21:\"background_position_x\";s:4:\"left\";s:21:\"background_attachment\";s:6:\"scroll\";s:21:\"et_pb_replace_content\";s:2:\"on\";}", "yes");
INSERT INTO `wp_options` VALUES("204", "nav_menu_options", "a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("1364", "_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109", "1458664446", "no");
INSERT INTO `wp_options` VALUES("1365", "_transient_feed_b9388c83948825c1edaef0d856b7b109", "a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n	\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:117:\"\n		\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/plugins/browse/popular/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Mar 2016 04:22:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:30:{i:0;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/woocommerce/#post-29860\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Sep 2011 08:13:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"29860@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Yoast SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/plugins/wordpress-seo/#post-8321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jan 2009 20:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"8321@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using Yoast SEO plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Duplicate Post\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/duplicate-post/#post-2646\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Dec 2007 17:40:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2646@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Clone posts and pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Lopo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Regenerate Thumbnails\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/plugins/regenerate-thumbnails/#post-6743\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 23 Aug 2008 14:38:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"6743@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"Allows you to regenerate your thumbnails after changing the thumbnail sizes.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Alex Mills (Viper007Bond)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Google XML Sitemaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"132@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Arne Brachhold\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Jetpack by WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://wordpress.org/plugins/jetpack/#post-23862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jan 2011 02:21:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"23862@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"Increase your traffic, view your stats, speed up your site, and protect yourself from hackers with Jetpack.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Tim Moore\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress Importer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"18101@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Advanced Custom Fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/advanced-custom-fields/#post-25254\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Mar 2011 04:07:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"25254@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Customise WordPress with powerful, professional and intuitive fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"elliotcondon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Google Analytics by Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2316@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"Track your WordPress site easily with the latest tracking codes and lots added data for search result pages and error pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"WP-PageNavi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wp-pagenavi/#post-363\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 23:17:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"363@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Adds a more advanced paging navigation interface.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Lester Chan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wordpress.org/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"15@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Really Simple CAPTCHA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/plugins/really-simple-captcha/#post-9542\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Mar 2009 02:17:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"9542@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"NextGEN Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/nextgen-gallery/#post-1169\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Apr 2007 20:08:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"1169@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 14 million downloads.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Alex Rabe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"All in One SEO Pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"753@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"The most downloaded plugin for WordPress (almost 30 million downloads). Use All in One SEO Pack to automatically optimize your site for Search Engines\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Wordfence Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wordfence/#post-29832\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Sep 2011 03:13:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"29832@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"The Wordfence WordPress security plugin provides free enterprise-class WordPress security, protecting your website from hacks and malware.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Wordfence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WP Super Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/wp-super-cache/#post-2572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Nov 2007 11:40:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2572@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"A very fast caching engine for WordPress that produces static html files.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Donncha O Caoimh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/hello-dolly/#post-5790\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 May 2008 22:11:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"5790@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"TinyMCE Advanced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/plugins/tinymce-advanced/#post-2082\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jun 2007 15:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2082@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Enables the advanced features of TinyMCE, the WordPress WYSIWYG editor.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Andrew Ozz\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Contact Form 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2141@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"W3 Total Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/w3-total-cache/#post-12073\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2009 18:46:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"12073@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"Easy Web Performance Optimization (WPO) using caching: browser, page, object, database, minify and content delivery network support.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Frederick Townes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Page Builder by SiteOrigin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/siteorigin-panels/#post-51888\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Apr 2013 10:36:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"51888@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Greg Priday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Disable Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins/disable-comments/#post-26907\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 May 2011 04:42:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"26907@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. Multisite friendly.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Samir Shah\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WP Multibyte Patch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wp-multibyte-patch/#post-28395\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Jul 2011 12:22:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"28395@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Multibyte functionality enhancement for the WordPress Japanese package.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"plugin-master\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Black Studio TinyMCE Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/plugins/black-studio-tinymce-widget/#post-31973\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Nov 2011 15:06:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"31973@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"The visual editor widget for Wordpress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Marco Chiesi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Google Analytics Dashboard for WP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Mar 2013 17:07:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"50539@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"Displays Google Analytics reports in your WordPress Dashboard. Inserts the latest Google Analytics tracking code in your pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Alin Marcu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"iThemes Security (formerly Better WP Security)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/better-wp-security/#post-21738\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Oct 2010 22:06:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"21738@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"Protect your WordPress site by hiding vital areas of your site, protecting access to important files, preventing brute-force login attempts, detecting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"iThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Clef Two-Factor Authentication\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wordpress.org/plugins/wpclef/#post-47509\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Dec 2012 01:25:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"47509@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"Modern two-factor that people love to use: strong authentication without passwords or tokens; single sign on/off; magical user experience.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Dave Ross\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"UpdraftPlus Backup and Restoration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/updraftplus/#post-38058\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 May 2012 15:14:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"38058@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"Backup and restoration made easy. Complete backups; manual or scheduled (backup to S3, Dropbox, Google Drive, Rackspace, FTP, SFTP, email + others).\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"David Anderson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Duplicator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/duplicator/#post-26607\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 May 2011 12:15:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"26607@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Duplicate, clone, backup, move and transfer an entire site from one location to another.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Cory Lamle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Meta Slider\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/ml-slider/#post-49521\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Feb 2013 16:56:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"49521@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:145:\"Easy to use WordPress slider plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Matcha Labs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:46:\"https://wordpress.org/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 22 Mar 2016 04:34:05 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:13:\"last-modified\";s:29:\"Mon, 05 Sep 2011 08:13:36 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}s:5:\"build\";s:14:\"20160307054056\";}", "no");
INSERT INTO `wp_options` VALUES("1345", "_transient_timeout_plugin_slugs", "1458647827", "no");
INSERT INTO `wp_options` VALUES("1346", "_transient_plugin_slugs", "a:7:{i:0;s:19:\"akismet/akismet.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:37:\"login-customizer/login-customizer.php\";i:3;s:25:\"duplicator/duplicator.php\";i:4;s:9:\"hello.php\";i:5;s:41:\"wordpress-importer/wordpress-importer.php\";i:6;s:31:\"wc-shortcodes/wc-shortcodes.php\";}", "no");
INSERT INTO `wp_options` VALUES("1041", "can_compress_scripts", "1", "yes");
INSERT INTO `wp_options` VALUES("1113", "_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a", "1457680794", "yes");
INSERT INTO `wp_options` VALUES("1114", "_site_transient_poptags_40cd750bba9870f18aada2478b24840a", "a:100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";s:4:\"5762\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"3580\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"3548\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"3046\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"2757\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:4:\"2281\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"2190\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:4:\"2045\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:4:\"1999\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:4:\"1968\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:4:\"1959\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:4:\"1915\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:4:\"1828\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:4:\"1641\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:4:\"1539\";}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";s:4:\"1532\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:4:\"1509\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:4:\"1338\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:4:\"1281\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:4:\"1276\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:4:\"1178\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:4:\"1080\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:4:\"1055\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:3:\"996\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:3:\"950\";}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";s:3:\"922\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"907\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:3:\"892\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"889\";}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";s:3:\"878\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:3:\"878\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"822\";}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";s:3:\"784\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"778\";}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";s:3:\"759\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"743\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"737\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"736\";}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";s:3:\"735\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"732\";}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"Share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";s:3:\"727\";}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";s:3:\"726\";}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";s:3:\"687\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"681\";}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";s:3:\"671\";}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";s:3:\"671\";}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";s:3:\"670\";}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"CSS\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";s:3:\"661\";}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";s:3:\"648\";}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";s:3:\"630\";}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";s:3:\"629\";}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";s:3:\"626\";}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";s:3:\"609\";}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";s:3:\"602\";}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";s:3:\"591\";}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";s:3:\"585\";}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";s:3:\"585\";}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";s:3:\"585\";}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";s:3:\"584\";}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";s:3:\"570\";}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";s:3:\"562\";}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";s:3:\"558\";}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";s:3:\"548\";}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";s:3:\"540\";}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";s:3:\"537\";}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";s:3:\"526\";}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";s:3:\"517\";}s:7:\"picture\";a:3:{s:4:\"name\";s:7:\"picture\";s:4:\"slug\";s:7:\"picture\";s:5:\"count\";s:3:\"507\";}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";s:3:\"502\";}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";s:3:\"501\";}s:6:\"simple\";a:3:{s:4:\"name\";s:6:\"simple\";s:4:\"slug\";s:6:\"simple\";s:5:\"count\";s:3:\"491\";}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";s:3:\"489\";}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";s:3:\"486\";}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";s:3:\"484\";}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";s:3:\"466\";}s:8:\"pictures\";a:3:{s:4:\"name\";s:8:\"pictures\";s:4:\"slug\";s:8:\"pictures\";s:5:\"count\";s:3:\"452\";}s:4:\"shop\";a:3:{s:4:\"name\";s:4:\"shop\";s:4:\"slug\";s:4:\"shop\";s:5:\"count\";s:3:\"438\";}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";s:3:\"436\";}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";s:3:\"436\";}s:4:\"html\";a:3:{s:4:\"name\";s:4:\"html\";s:4:\"slug\";s:4:\"html\";s:5:\"count\";s:3:\"435\";}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";s:3:\"434\";}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";s:3:\"428\";}s:5:\"flash\";a:3:{s:4:\"name\";s:5:\"flash\";s:4:\"slug\";s:5:\"flash\";s:5:\"count\";s:3:\"422\";}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";s:3:\"419\";}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";s:3:\"414\";}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"News\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";s:3:\"404\";}s:3:\"tag\";a:3:{s:4:\"name\";s:3:\"tag\";s:4:\"slug\";s:3:\"tag\";s:5:\"count\";s:3:\"404\";}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";s:3:\"402\";}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";s:3:\"402\";}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";s:3:\"398\";}s:11:\"advertising\";a:3:{s:4:\"name\";s:11:\"advertising\";s:4:\"slug\";s:11:\"advertising\";s:5:\"count\";s:3:\"397\";}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";s:3:\"394\";}s:9:\"thumbnail\";a:3:{s:4:\"name\";s:9:\"thumbnail\";s:4:\"slug\";s:9:\"thumbnail\";s:5:\"count\";s:3:\"390\";}s:4:\"text\";a:3:{s:4:\"name\";s:4:\"text\";s:4:\"slug\";s:4:\"text\";s:5:\"count\";s:3:\"388\";}s:6:\"upload\";a:3:{s:4:\"name\";s:6:\"upload\";s:4:\"slug\";s:6:\"upload\";s:5:\"count\";s:3:\"386\";}s:7:\"sharing\";a:3:{s:4:\"name\";s:7:\"sharing\";s:4:\"slug\";s:7:\"sharing\";s:5:\"count\";s:3:\"384\";}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";s:3:\"384\";}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";s:3:\"384\";}s:9:\"automatic\";a:3:{s:4:\"name\";s:9:\"automatic\";s:4:\"slug\";s:9:\"automatic\";s:5:\"count\";s:3:\"381\";}s:6:\"paypal\";a:3:{s:4:\"name\";s:6:\"paypal\";s:4:\"slug\";s:6:\"paypal\";s:5:\"count\";s:3:\"381\";}}", "yes");
INSERT INTO `wp_options` VALUES("1333", "_transient_timeout_rn_last_notification_480f7b6", "1458668312", "no");
INSERT INTO `wp_options` VALUES("1334", "_transient_rn_last_notification_480f7b6", "O:8:\"stdClass\":1:{s:5:\"error\";s:7:\"nothing\";}", "no");
INSERT INTO `wp_options` VALUES("1118", "widget_wc_shortcodes_social_icons", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("1119", "logincust_logo", "http://hrd.softons.cu.cc/wp-content/uploads/2016/03/LOGO-HRD2.png", "yes");
INSERT INTO `wp_options` VALUES("1120", "logincust_logo_width", "250px", "yes");
INSERT INTO `wp_options` VALUES("1121", "logincust_logo_height", "84px", "yes");
INSERT INTO `wp_options` VALUES("1122", "logincust_logo_padding", "5px", "yes");
INSERT INTO `wp_options` VALUES("1123", "logincust_bg_image", "http://hrd.softons.cu.cc/wp-content/uploads/2016/03/bg04.jpg", "yes");
INSERT INTO `wp_options` VALUES("1124", "logincust_bg_color", "#F1F1F1", "yes");
INSERT INTO `wp_options` VALUES("1125", "logincust_bg_size", "", "yes");
INSERT INTO `wp_options` VALUES("1126", "logincust_form_bg_image", "", "yes");
INSERT INTO `wp_options` VALUES("1127", "logincust_form_bg_color", "#FFF", "yes");
INSERT INTO `wp_options` VALUES("1128", "logincust_form_width", "320px", "yes");
INSERT INTO `wp_options` VALUES("1129", "logincust_form_height", "194px", "yes");
INSERT INTO `wp_options` VALUES("1130", "logincust_form_padding", "26px 24px 46px", "yes");
INSERT INTO `wp_options` VALUES("1131", "logincust_form_border", "", "yes");
INSERT INTO `wp_options` VALUES("1132", "logincust_field_width", "100%", "yes");
INSERT INTO `wp_options` VALUES("1133", "logincust_field_margin", "2px 6px 16px 0px", "yes");
INSERT INTO `wp_options` VALUES("1134", "logincust_field_bg", "#FFF", "yes");
INSERT INTO `wp_options` VALUES("1135", "logincust_field_color", "#333", "yes");
INSERT INTO `wp_options` VALUES("1136", "logincust_field_label", "#777", "yes");
INSERT INTO `wp_options` VALUES("1137", "logincust_button_bg", "#2EA2CC", "yes");
INSERT INTO `wp_options` VALUES("1138", "logincust_button_border", "#0074A2", "yes");
INSERT INTO `wp_options` VALUES("1139", "logincust_button_hover_bg", "#1E8CBE", "yes");
INSERT INTO `wp_options` VALUES("1140", "logincust_button_hover_border", "#0074A2", "yes");
INSERT INTO `wp_options` VALUES("1141", "logincust_button_shadow", "#78C8E6", "yes");
INSERT INTO `wp_options` VALUES("1142", "logincust_button_color", "#FFF", "yes");
INSERT INTO `wp_options` VALUES("1143", "logincust_other_color", "#999", "yes");
INSERT INTO `wp_options` VALUES("1144", "logincust_other_color_hover", "#2EA2CC", "yes");
INSERT INTO `wp_options` VALUES("1145", "logincust_other_css", "", "yes");
INSERT INTO `wp_options` VALUES("1146", "logincust_pro_badge", "", "yes");
INSERT INTO `wp_options` VALUES("1147", "logincust_security_captcha", "", "yes");
INSERT INTO `wp_options` VALUES("1148", "logincust_security_captcha_key", "", "yes");
INSERT INTO `wp_options` VALUES("1149", "logincust_security_captcha_style", "", "yes");
INSERT INTO `wp_options` VALUES("1150", "logincust_security_captcha_data_type", "", "yes");
INSERT INTO `wp_options` VALUES("1151", "logincust_security_login_limits", "3", "yes");
INSERT INTO `wp_options` VALUES("1152", "logincust_security_logins_timeout", "3", "yes");
INSERT INTO `wp_options` VALUES("1378", "_transient_timeout_et_pb_aweber_lists", "1458735947", "no");
INSERT INTO `wp_options` VALUES("1379", "_transient_et_pb_aweber_lists", "a:0:{}", "no");
INSERT INTO `wp_options` VALUES("1163", "_site_transient_timeout_browser_dee24e1cb8ffa5ebe8021356c173956d", "1458301069", "yes");
INSERT INTO `wp_options` VALUES("1164", "_site_transient_browser_dee24e1cb8ffa5ebe8021356c173956d", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"48.0.2564.116\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("1187", "WPLANG", "", "yes");
INSERT INTO `wp_options` VALUES("1215", "_site_transient_timeout_browser_06d3d9617a2883877c8f5e774e52c741", "1458707092", "yes");
INSERT INTO `wp_options` VALUES("1216", "_site_transient_browser_06d3d9617a2883877c8f5e774e52c741", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"48.0.2564.116\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("1299", "_site_transient_browser_0feba90ad8dd67606fcec27bcb003086", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"49.0.2623.87\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("1380", "duplicator_ui_view_state", "a:1:{s:14:\"dup-wpnotice01\";b:1;}", "yes");
INSERT INTO `wp_options` VALUES("1381", "duplicator_package_active", "O:11:\"DUP_Package\":16:{s:2:\"ID\";N;s:4:\"Name\";s:37:\"20160322_hrdintegratedmanpowersolutio\";s:4:\"Hash\";s:29:\"56f13ef444afe3855160322124748\";s:8:\"NameHash\";s:67:\"20160322_hrdintegratedmanpowersolutio_56f13ef444afe3855160322124748\";s:7:\"Version\";s:5:\"0.5.8\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:48:\"/home/softonscu/public_html/hrd/wp-snapshots/tmp\";s:8:\"StoreURL\";s:38:\"http://hrd.softons.cu.cc/wp-snapshots/\";s:8:\"ScanFile\";s:77:\"20160322_hrdintegratedmanpowersolutio_56f13ef444afe3855160322124748_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":17:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"File\";N;s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:31:\"/home/softonscu/public_html/hrd\";s:4:\"Size\";i:0;s:12:\"WarnFileSize\";a:0:{}s:12:\"WarnFileName\";a:0:{}s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:5:\"Links\";a:0:{}s:8:\"OmitDirs\";a:0:{}s:9:\"OmitFiles\";a:0:{}s:10:\"\0*\0Package\";O:11:\"DUP_Package\":16:{s:2:\"ID\";N;s:4:\"Name\";s:37:\"20160322_hrdintegratedmanpowersolutio\";s:4:\"Hash\";s:29:\"56f13ef444afe3855160322124748\";s:8:\"NameHash\";s:67:\"20160322_hrdintegratedmanpowersolutio_56f13ef444afe3855160322124748\";s:7:\"Version\";s:5:\"0.5.8\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:48:\"/home/softonscu/public_html/hrd/wp-snapshots/tmp\";s:8:\"StoreURL\";s:38:\"http://hrd.softons.cu.cc/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";r:15;s:9:\"Installer\";O:13:\"DUP_Installer\":11:{s:4:\"File\";N;s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";r:30;}s:8:\"Database\";O:12:\"DUP_Database\":9:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";N;s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"\0*\0Package\";r:30;s:25:\"\0DUP_Database\0dbStorePath\";N;}}s:28:\"\0DUP_Archive\0filterDirsArray\";a:0:{}s:28:\"\0DUP_Archive\0filterExtsArray\";a:0:{}}s:9:\"Installer\";r:45;s:8:\"Database\";r:57;}", "yes");
INSERT INTO `wp_options` VALUES("1298", "_site_transient_timeout_browser_0feba90ad8dd67606fcec27bcb003086", "1458974948", "yes");
INSERT INTO `wp_options` VALUES("1377", "_site_transient_update_plugins", "O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1458641009;s:8:\"response\";a:3:{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.8\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.3.1.8.zip\";}s:25:\"duplicator/duplicator.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"22600\";s:4:\"slug\";s:10:\"duplicator\";s:6:\"plugin\";s:25:\"duplicator/duplicator.php\";s:11:\"new_version\";s:5:\"1.1.4\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/duplicator/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/duplicator.1.1.4.zip\";}s:31:\"wc-shortcodes/wc-shortcodes.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"45328\";s:4:\"slug\";s:13:\"wc-shortcodes\";s:6:\"plugin\";s:31:\"wc-shortcodes/wc-shortcodes.php\";s:11:\"new_version\";s:4:\"1.83\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wc-shortcodes/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/wc-shortcodes.zip\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:4:{s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:3:\"790\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:3:\"4.4\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.4.zip\";}s:37:\"login-customizer/login-customizer.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"55995\";s:4:\"slug\";s:16:\"login-customizer\";s:6:\"plugin\";s:37:\"login-customizer/login-customizer.php\";s:11:\"new_version\";s:5:\"1.0.6\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/login-customizer/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/login-customizer.zip\";}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: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\";}}}", "yes");
INSERT INTO `wp_options` VALUES("1268", "_site_transient_timeout_browser_e69998cd166d0a716e585b452d0a9806", "1458814356", "yes");
INSERT INTO `wp_options` VALUES("1269", "_site_transient_browser_e69998cd166d0a716e585b452d0a9806", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"47.0.2526.111\";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");
INSERT INTO `wp_options` VALUES("1358", "_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1458664444", "no");
INSERT INTO `wp_options` VALUES("1359", "_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1458664444", "no");
INSERT INTO `wp_options` VALUES("1360", "_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1458621244", "no");
INSERT INTO `wp_options` VALUES("1361", "_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c", "1458664445", "no");
INSERT INTO `wp_options` VALUES("1362", "_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c", "1458664445", "no");
INSERT INTO `wp_options` VALUES("1363", "_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c", "1458621245", "no");
INSERT INTO `wp_options` VALUES("1366", "_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109", "1458664446", "no");
INSERT INTO `wp_options` VALUES("1367", "_transient_feed_mod_b9388c83948825c1edaef0d856b7b109", "1458621246", "no");
INSERT INTO `wp_options` VALUES("1368", "_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51", "1458664446", "no");
INSERT INTO `wp_options` VALUES("1369", "_transient_dash_4077549d03da2e451c8b5f002294ff51", "<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2016/03/wordpress-4-5-beta-4/\'>WordPress 4.5 Beta 4</a> <span class=\"rss-date\">March 17, 2016</span><div class=\"rssSummary\">WordPress 4.5 Beta 4 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can [&hellip;]</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wptavern.com/wp-engine-adds-2fa-to-user-portals-opt-in-php-7-support-in-the-works\'>WPTavern: WP Engine Adds 2FA to User Portal, Opt-In PHP 7 Support In the Works</a></li><li><a class=\'rsswidget\' href=\'https://ma.tt/2016/03/chamath-on-growing-facebook/\'>Matt: Chamath on Growing Facebook</a></li><li><a class=\'rsswidget\' href=\'http://wptavern.com/in-case-you-missed-it-issue-5\'>WPTavern: In Case You Missed It – Issue 5</a></li></ul></div><div class=\"rss-widget\"><ul><li class=\'dashboard-news-plugin\'><span>Popular Plugin:</span> <a href=\'https://wordpress.org/plugins/google-analytics-dashboard-for-wp/\' class=\'dashboard-news-plugin-link\'>Google Analytics Dashboard for WP</a>&nbsp;<span>(<a href=\'plugin-install.php?tab=plugin-information&amp;plugin=google-analytics-dashboard-for-wp&amp;_wpnonce=9fe8dd0197&amp;TB_iframe=true&amp;width=600&amp;height=800\' class=\'thickbox\' title=\'Google Analytics Dashboard for WP\'>Install</a>)</span></li></ul></div>", "no");
INSERT INTO `wp_options` VALUES("1013", "_site_transient_update_core", "O:8:\"stdClass\":4:{s:7:\"updates\";a:5:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.4.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.4.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.4.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.4.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.4.2\";s:7:\"version\";s:5:\"4.4.2\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.4\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.4.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.4.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.4.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.4.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.4.2\";s:7:\"version\";s:5:\"4.4.2\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.4\";s:15:\"partial_version\";s:0:\"\";s:13:\"support_email\";s:26:\"updatehelp42@wordpress.org\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.3.3.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.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.3.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.3.3-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.3.3\";s:7:\"version\";s:5:\"4.3.3\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.4\";s:15:\"partial_version\";s:0:\"\";s:13:\"support_email\";s:26:\"updatehelp42@wordpress.org\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.2.7.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.2.7.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.2.7-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.2.7-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.2.7\";s:7:\"version\";s:5:\"4.2.7\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.4\";s:15:\"partial_version\";s:0:\"\";s:13:\"support_email\";s:26:\"updatehelp42@wordpress.org\";}i:4;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:60:\"https://downloads.wordpress.org/release/wordpress-4.1.10.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:60:\"https://downloads.wordpress.org/release/wordpress-4.1.10.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.1.10-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-4.1.10-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:6:\"4.1.10\";s:7:\"version\";s:6:\"4.1.10\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.4\";s:15:\"partial_version\";s:0:\"\";s:13:\"support_email\";s:26:\"updatehelp42@wordpress.org\";}}s:12:\"last_checked\";i:1458641008;s:15:\"version_checked\";s:6:\"4.0.10\";s:12:\"translations\";a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("1374", "_site_transient_timeout_theme_roots", "1458642808", "yes");
INSERT INTO `wp_options` VALUES("1375", "_site_transient_theme_roots", "a:4:{s:7:\"Softons\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";s:12:\"twentytwelve\";s:7:\"/themes\";}", "yes");
INSERT INTO `wp_options` VALUES("1010", "_site_transient_et_update_themes", "O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1458641010;}", "yes");
INSERT INTO `wp_options` VALUES("1376", "_site_transient_update_themes", "O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1458641010;s:7:\"checked\";a:4:{s:7:\"Softons\";s:3:\"2.1\";s:14:\"twentyfourteen\";s:3:\"1.2\";s:14:\"twentythirteen\";s:3:\"1.3\";s:12:\"twentytwelve\";s:3:\"1.5\";}s:8:\"response\";a:3:{s:14:\"twentyfourteen\";a:4:{s:5:\"theme\";s:14:\"twentyfourteen\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentyfourteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentyfourteen.1.6.zip\";}s:14:\"twentythirteen\";a:4:{s:5:\"theme\";s:14:\"twentythirteen\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentythirteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentythirteen.1.7.zip\";}s:12:\"twentytwelve\";a:4:{s:5:\"theme\";s:12:\"twentytwelve\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwelve/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwelve.1.9.zip\";}}s:12:\"translations\";a:0:{}}", "yes");

/* INSERT TABLE DATA: wp_postmeta */
INSERT INTO `wp_postmeta` VALUES("52", "53", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("51", "52", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("50", "51", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("49", "50", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("48", "49", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("47", "48", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("46", "47", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("45", "46", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("44", "45", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("43", "44", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("42", "43", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("41", "42", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("40", "41", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("39", "40", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("38", "39", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("37", "38", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("256", "304", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("23", "22", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("24", "22", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("25", "22", "_et_pb_page_layout", "et_full_width_page");
INSERT INTO `wp_postmeta` VALUES("26", "22", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("27", "22", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("28", "22", "_edit_lock", "1458650157:1");
INSERT INTO `wp_postmeta` VALUES("29", "32", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("30", "32", "_edit_lock", "1416042549:1");
INSERT INTO `wp_postmeta` VALUES("53", "54", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("54", "55", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("55", "56", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("56", "57", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("57", "58", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("58", "59", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("59", "60", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("60", "61", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("61", "62", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("62", "63", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("63", "64", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("64", "65", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("65", "66", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("66", "67", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("67", "68", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("68", "69", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("69", "70", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("70", "71", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("71", "72", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("72", "73", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("73", "74", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("74", "75", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("75", "76", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("76", "77", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("77", "78", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("78", "79", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("79", "80", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("80", "81", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("81", "82", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("82", "83", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("83", "84", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("84", "85", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("85", "86", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("86", "87", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("87", "88", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("88", "89", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("89", "90", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("90", "91", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("91", "92", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("92", "93", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("93", "94", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("94", "95", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("95", "96", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("96", "97", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("97", "98", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("98", "99", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("99", "100", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("100", "101", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("107", "22", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("128", "185", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("129", "185", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("130", "185", "_menu_item_object_id", "22");
INSERT INTO `wp_postmeta` VALUES("131", "185", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("132", "185", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("133", "185", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("134", "185", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("135", "185", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("424", "481", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("423", "481", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("422", "481", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("421", "481", "_menu_item_object_id", "304");
INSERT INTO `wp_postmeta` VALUES("420", "481", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("419", "481", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("257", "304", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("258", "304", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("259", "304", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("260", "304", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("261", "304", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("262", "304", "_edit_lock", "1458649967:1");
INSERT INTO `wp_postmeta` VALUES("263", "307", "_form", "<p>Name*<br />\n    [text* text-449] </p>\n\n<p>Email*<br />\n    [email* email-992]</p>\n\n<p>Subject<br />\n    [text text-57] </p>\n\n<p>Upload<br />\n   [file file-543]</p>\n\n<p>Message*<br />\n   [textarea* textarea-357]</p>\n\n<p>[submit \"Send\"]</p>");
INSERT INTO `wp_postmeta` VALUES("264", "307", "_mail", "a:8:{s:7:\"subject\";s:9:\"[text-57]\";s:6:\"sender\";s:24:\"[text-449] <[email-992]>\";s:4:\"body\";s:190:\"From: [text-449] <[email-992]>\nSubject: [text-57]\n\nMessage Body :\n[textarea-357]\n\n\n\n--\nThis e-mail was sent from a contact form on HRD Integrated Manpower Solution (http://hrd.softons.cu.cc)\";s:9:\"recipient\";s:16:\"tech@softons.com\";s:18:\"additional_headers\";s:21:\"Reply-To: [email-992]\";s:11:\"attachments\";s:10:\"[file-543]\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("265", "307", "_mail_2", "a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:14:\"[textarea-357]\";s:6:\"sender\";s:26:\"<softons> tech@softons.com\";s:4:\"body\";s:253:\"Thanks for getting in touch!!!! \n\nWe have received your message and would like to thank you for writing to us. We’ll reach out to you by shortly. This e-mail was sent from a contact form on DIVYA MANPOWER RESOURCES (P) LTD \n(http://dmrl.softons.cu.cc)\";s:9:\"recipient\";s:11:\"[email-992]\";s:18:\"additional_headers\";s:26:\"Reply-To: tech@softons.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("266", "307", "_messages", "a:21:{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:31:\"Please fill the required field.\";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.\";}");
INSERT INTO `wp_postmeta` VALUES("267", "307", "_additional_settings", "");
INSERT INTO `wp_postmeta` VALUES("268", "307", "_locale", "en_US");
INSERT INTO `wp_postmeta` VALUES("269", "311", "_form", "<p>Name*<br />\n     [text* text-949]</p>\n\n<p>Email Id*<br />\n    [email* email-632]</p>\n\n\n<p>[submit \"Send\"]</p>");
INSERT INTO `wp_postmeta` VALUES("276", "312", "_edit_lock", "1417522841:1");
INSERT INTO `wp_postmeta` VALUES("277", "312", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("270", "311", "_mail", "a:8:{s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:24:\"[text-949] <[email-632]>\";s:4:\"body\";s:139:\"From:[text-949] <[email-632]>\n\n\n\n--\nThis e-mail was sent from a Unsubscribe form on Nandavana Properties Emailer (http://hrd.softons.cu.cc)\";s:9:\"recipient\";s:20:\"nandaavana@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("275", "312", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("271", "311", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:36:\"Nandavana <wordpress@softonsa.cu.cc>\";s:4:\"body\";s:113:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Nandavana (http://hrd.softons.cu.cc)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:26:\"Reply-To: info@softons.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("272", "311", "_messages", "a:21:{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:31:\"Please fill the required field.\";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.\";}");
INSERT INTO `wp_postmeta` VALUES("273", "311", "_additional_settings", "");
INSERT INTO `wp_postmeta` VALUES("274", "311", "_locale", "en_US");
INSERT INTO `wp_postmeta` VALUES("278", "312", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("279", "312", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("280", "312", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("281", "312", "_et_pb_old_content", "[contact-form-7 id=\"311\" title=\"Unsubscribe\"]");
INSERT INTO `wp_postmeta` VALUES("284", "337", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("285", "337", "_edit_lock", "1458650143:1");
INSERT INTO `wp_postmeta` VALUES("320", "337", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("321", "337", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("322", "337", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("323", "337", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("324", "337", "_et_pb_old_content", "[et_pb_section][et_pb_row][/et_pb_row][/et_pb_section]");
INSERT INTO `wp_postmeta` VALUES("425", "481", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("426", "481", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("490", "541", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("491", "541", "_edit_lock", "1427713453:1");
INSERT INTO `wp_postmeta` VALUES("492", "541", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("493", "541", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("494", "541", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("495", "541", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("496", "541", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("764", "777", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("765", "777", "_edit_lock", "1427773940:1");
INSERT INTO `wp_postmeta` VALUES("774", "777", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("775", "777", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("776", "777", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("777", "777", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("778", "777", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("781", "792", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("782", "792", "_edit_lock", "1458626502:1");
INSERT INTO `wp_postmeta` VALUES("783", "792", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("784", "792", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("785", "792", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("786", "792", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("787", "792", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("788", "794", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("789", "794", "_edit_lock", "1427345445:1");
INSERT INTO `wp_postmeta` VALUES("790", "794", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("791", "794", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("792", "794", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("793", "794", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("794", "794", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("917", "888", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:19:\"2014/11/service.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"service-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"service-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"service-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;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;}}");
INSERT INTO `wp_postmeta` VALUES("916", "888", "_wp_attached_file", "2014/11/service.png");
INSERT INTO `wp_postmeta` VALUES("915", "887", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2014/11/what-we-do2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"what-we-do2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"what-we-do2-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"what-we-do2-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;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;}}");
INSERT INTO `wp_postmeta` VALUES("914", "887", "_wp_attached_file", "2014/11/what-we-do2.png");
INSERT INTO `wp_postmeta` VALUES("886", "872", "_wp_attached_file", "2016/03/bg04.jpg");
INSERT INTO `wp_postmeta` VALUES("887", "872", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1980;s:6:\"height\";i:1172;s:4:\"file\";s:16:\"2016/03/bg04.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"bg04-150x150.jpg\";s:5:\"width\";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:\"bg04-300x177.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"bg04-1024x606.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:606;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:16:\"bg04-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:17:\"bg04-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:16:\"bg04-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:17:\"bg04-1080x639.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:639;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;}}");
INSERT INTO `wp_postmeta` VALUES("888", "873", "_wp_attached_file", "2014/11/Slides11.jpg");
INSERT INTO `wp_postmeta` VALUES("889", "873", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:810;s:4:\"file\";s:20:\"2014/11/Slides11.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Slides11-150x150.jpg\";s:5:\"width\";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:\"Slides11-300x126.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"Slides11-1024x432.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"Slides11-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"Slides11-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"Slides11-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"Slides11-1080x455.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:455;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;}}");
INSERT INTO `wp_postmeta` VALUES("890", "875", "_wp_attached_file", "2014/11/Slides12.jpg");
INSERT INTO `wp_postmeta` VALUES("891", "875", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:810;s:4:\"file\";s:20:\"2014/11/Slides12.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Slides12-150x150.jpg\";s:5:\"width\";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:\"Slides12-300x126.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"Slides12-1024x432.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"Slides12-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"Slides12-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"Slides12-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"Slides12-1080x455.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:455;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;}}");
INSERT INTO `wp_postmeta` VALUES("892", "877", "_wp_attached_file", "2014/11/Slides13.jpg");
INSERT INTO `wp_postmeta` VALUES("893", "877", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:810;s:4:\"file\";s:20:\"2014/11/Slides13.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Slides13-150x150.jpg\";s:5:\"width\";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:\"Slides13-300x126.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"Slides13-1024x432.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"Slides13-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"Slides13-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"Slides13-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"Slides13-1080x455.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:455;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;}}");
INSERT INTO `wp_postmeta` VALUES("894", "879", "_wp_attached_file", "2014/11/Slides2.jpg");
INSERT INTO `wp_postmeta` VALUES("895", "879", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:810;s:4:\"file\";s:19:\"2014/11/Slides2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Slides2-150x150.jpg\";s:5:\"width\";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:\"Slides2-300x126.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"Slides2-1024x432.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"Slides2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"Slides2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"Slides2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"Slides2-1080x455.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:455;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;}}");
INSERT INTO `wp_postmeta` VALUES("896", "881", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("897", "881", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("898", "881", "_menu_item_object_id", "881");
INSERT INTO `wp_postmeta` VALUES("899", "881", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("900", "881", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("901", "881", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("902", "881", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("903", "881", "_menu_item_url", "#");
INSERT INTO `wp_postmeta` VALUES("918", "889", "_wp_attached_file", "2014/11/icons-ervice.png");
INSERT INTO `wp_postmeta` VALUES("905", "882", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("906", "882", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("907", "882", "_menu_item_object_id", "882");
INSERT INTO `wp_postmeta` VALUES("908", "882", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("909", "882", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("910", "882", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("911", "882", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("912", "882", "_menu_item_url", "#");
INSERT INTO `wp_postmeta` VALUES("919", "889", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:24:\"2014/11/icons-ervice.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"icons-ervice-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"icons-ervice-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"icons-ervice-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;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;}}");
INSERT INTO `wp_postmeta` VALUES("920", "890", "_wp_attached_file", "2014/11/commetment.png");
INSERT INTO `wp_postmeta` VALUES("921", "890", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2014/11/commetment.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"commetment-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"commetment-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"commetment-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;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;}}");
INSERT INTO `wp_postmeta` VALUES("922", "895", "_wp_attached_file", "2014/11/Slides3.jpg");
INSERT INTO `wp_postmeta` VALUES("923", "895", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:810;s:4:\"file\";s:19:\"2014/11/Slides3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Slides3-150x150.jpg\";s:5:\"width\";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:\"Slides3-300x126.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"Slides3-1024x432.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"Slides3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"Slides3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"Slides3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"Slides3-1080x455.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:455;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;}}");
INSERT INTO `wp_postmeta` VALUES("924", "898", "_wp_attached_file", "2014/11/Slides4.jpg");
INSERT INTO `wp_postmeta` VALUES("925", "898", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:810;s:4:\"file\";s:19:\"2014/11/Slides4.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Slides4-150x150.jpg\";s:5:\"width\";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:\"Slides4-300x126.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"Slides4-1024x432.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"Slides4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"Slides4-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"Slides4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"Slides4-1080x455.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:455;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;}}");
INSERT INTO `wp_postmeta` VALUES("926", "904", "_wp_attached_file", "2014/12/contact-us.jpg");
INSERT INTO `wp_postmeta` VALUES("927", "904", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:810;s:4:\"file\";s:22:\"2014/12/contact-us.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"contact-us-150x150.jpg\";s:5:\"width\";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:\"contact-us-300x126.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"contact-us-1024x432.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"contact-us-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:23:\"contact-us-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"contact-us-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:23:\"contact-us-1080x455.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:455;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;}}");
INSERT INTO `wp_postmeta` VALUES("928", "907", "_wp_attached_file", "2014/11/Slides41.jpg");
INSERT INTO `wp_postmeta` VALUES("929", "907", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:810;s:4:\"file\";s:20:\"2014/11/Slides41.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Slides41-150x150.jpg\";s:5:\"width\";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:\"Slides41-300x126.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"Slides41-1024x432.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"Slides41-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"Slides41-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"Slides41-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"Slides41-1080x455.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:455;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;}}");
INSERT INTO `wp_postmeta` VALUES("930", "916", "_wp_attached_file", "2014/11/Get_Started_Button-2.png");
INSERT INTO `wp_postmeta` VALUES("931", "916", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:280;s:6:\"height\";i:74;s:4:\"file\";s:32:\"2014/11/Get_Started_Button-2.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Get_Started_Button-2-150x74.png\";s:5:\"width\";i:150;s:6:\"height\";i:74;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;}}");
INSERT INTO `wp_postmeta` VALUES("1115", "1077", "_wp_attached_file", "2016/03/LOGO-HRD.png");
INSERT INTO `wp_postmeta` VALUES("1048", "1052", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("1047", "1052", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("1046", "1052", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("1045", "1052", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("1044", "1052", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1043", "1052", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1114", "312", "_wp_trash_meta_time", "1458296989");
INSERT INTO `wp_postmeta` VALUES("1116", "1077", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:160;s:6:\"height\";i:124;s:4:\"file\";s:20:\"2016/03/LOGO-HRD.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"LOGO-HRD-150x124.png\";s:5:\"width\";i:150;s:6:\"height\";i:124;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;}}");
INSERT INTO `wp_postmeta` VALUES("1118", "1078", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:16;s:6:\"height\";i:16;s:4:\"file\";s:20:\"2016/03/favicon1.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;}}");
INSERT INTO `wp_postmeta` VALUES("1112", "777", "_wp_trash_meta_time", "1458296985");
INSERT INTO `wp_postmeta` VALUES("1113", "312", "_wp_trash_meta_status", "publish");
INSERT INTO `wp_postmeta` VALUES("1117", "1078", "_wp_attached_file", "2016/03/favicon1.png");
INSERT INTO `wp_postmeta` VALUES("1110", "794", "_wp_trash_meta_time", "1458296973");
INSERT INTO `wp_postmeta` VALUES("1111", "777", "_wp_trash_meta_status", "publish");
INSERT INTO `wp_postmeta` VALUES("1109", "794", "_wp_trash_meta_status", "publish");
INSERT INTO `wp_postmeta` VALUES("1108", "541", "_wp_trash_meta_time", "1458296966");
INSERT INTO `wp_postmeta` VALUES("1107", "541", "_wp_trash_meta_status", "publish");
INSERT INTO `wp_postmeta` VALUES("986", "968", "_wp_attached_file", "2014/12/About-us.jpg");
INSERT INTO `wp_postmeta` VALUES("987", "968", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:810;s:4:\"file\";s:20:\"2014/12/About-us.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"About-us-150x150.jpg\";s:5:\"width\";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:\"About-us-300x126.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"About-us-1024x432.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"About-us-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"About-us-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"About-us-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"About-us-1080x455.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:455;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;}}");
INSERT INTO `wp_postmeta` VALUES("988", "976", "_wp_attached_file", "2014/12/manpower-graphic.png");
INSERT INTO `wp_postmeta` VALUES("989", "976", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:325;s:6:\"height\";i:350;s:4:\"file\";s:28:\"2014/12/manpower-graphic.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"manpower-graphic-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"manpower-graphic-278x300.png\";s:5:\"width\";i:278;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"manpower-graphic-325x250.png\";s:5:\"width\";i:325;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"manpower-graphic-325x284.png\";s:5:\"width\";i:325;s:6:\"height\";i:284;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;}}");
INSERT INTO `wp_postmeta` VALUES("990", "980", "_wp_attached_file", "2014/12/companyprofile-new.jpg");
INSERT INTO `wp_postmeta` VALUES("991", "980", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:195;s:6:\"height\";i:47;s:4:\"file\";s:30:\"2014/12/companyprofile-new.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"companyprofile-new-150x47.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:47;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;}}");
INSERT INTO `wp_postmeta` VALUES("992", "984", "_wp_attached_file", "2015/03/testimonial.jpg");
INSERT INTO `wp_postmeta` VALUES("993", "984", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:810;s:4:\"file\";s:23:\"2015/03/testimonial.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"testimonial-150x150.jpg\";s:5:\"width\";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:\"testimonial-300x126.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"testimonial-1024x432.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"testimonial-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"testimonial-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"testimonial-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:24:\"testimonial-1080x455.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:455;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;}}");
INSERT INTO `wp_postmeta` VALUES("994", "999", "_wp_attached_file", "2015/03/testimonial1.jpg");
INSERT INTO `wp_postmeta` VALUES("995", "999", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:810;s:4:\"file\";s:24:\"2015/03/testimonial1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"testimonial1-150x150.jpg\";s:5:\"width\";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:\"testimonial1-300x126.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"testimonial1-1024x432.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"testimonial1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"testimonial1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"testimonial1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"testimonial1-1080x455.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:455;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;}}");
INSERT INTO `wp_postmeta` VALUES("996", "1002", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("997", "1002", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("998", "1002", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("999", "1002", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("1000", "1002", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("1001", "1002", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("1002", "1002", "_edit_lock", "1458649777:1");
INSERT INTO `wp_postmeta` VALUES("1003", "1005", "_wp_attached_file", "2016/03/service1.jpg");
INSERT INTO `wp_postmeta` VALUES("1004", "1005", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:810;s:4:\"file\";s:20:\"2016/03/service1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"service1-150x150.jpg\";s:5:\"width\";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:\"service1-300x126.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"service1-1024x432.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"service1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"service1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"service1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"service1-1080x455.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:455;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;}}");
INSERT INTO `wp_postmeta` VALUES("1005", "1007", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1006", "1007", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1007", "1007", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("1008", "1007", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("1009", "1007", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("1010", "1007", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("1011", "1007", "_edit_lock", "1458645543:1");
INSERT INTO `wp_postmeta` VALUES("1012", "1010", "_wp_attached_file", "2016/03/service2.jpg");
INSERT INTO `wp_postmeta` VALUES("1013", "1010", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:810;s:4:\"file\";s:20:\"2016/03/service2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"service2-150x150.jpg\";s:5:\"width\";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:\"service2-300x126.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"service2-1024x432.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"service2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"service2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"service2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"service2-1080x455.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:455;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;}}");
INSERT INTO `wp_postmeta` VALUES("1014", "1012", "_wp_attached_file", "2016/03/service21.jpg");
INSERT INTO `wp_postmeta` VALUES("1015", "1012", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:810;s:4:\"file\";s:21:\"2016/03/service21.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"service21-150x150.jpg\";s:5:\"width\";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:\"service21-300x126.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"service21-1024x432.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"service21-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"service21-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"service21-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:22:\"service21-1080x455.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:455;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;}}");
INSERT INTO `wp_postmeta` VALUES("1022", "1021", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1023", "1021", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1024", "1021", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("1025", "1021", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("1026", "1021", "_et_pb_use_builder", "");
INSERT INTO `wp_postmeta` VALUES("1027", "1021", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("1028", "1021", "_edit_lock", "1458210092:1");
INSERT INTO `wp_postmeta` VALUES("1029", "1021", "_wp_trash_meta_status", "publish");
INSERT INTO `wp_postmeta` VALUES("1030", "1021", "_wp_trash_meta_time", "1458210255");
INSERT INTO `wp_postmeta` VALUES("1031", "1027", "_wp_attached_file", "2016/03/recruit.jpg");
INSERT INTO `wp_postmeta` VALUES("1032", "1027", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:673;s:6:\"height\";i:199;s:4:\"file\";s:19:\"2016/03/recruit.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"recruit-150x150.jpg\";s:5:\"width\";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:\"recruit-300x88.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:88;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"recruit-400x199.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"recruit-400x199.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:199;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;}}");
INSERT INTO `wp_postmeta` VALUES("1033", "1038", "_wp_attached_file", "2016/03/recruit1.jpg");
INSERT INTO `wp_postmeta` VALUES("1034", "1038", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:810;s:4:\"file\";s:20:\"2016/03/recruit1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"recruit1-150x150.jpg\";s:5:\"width\";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:\"recruit1-300x126.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"recruit1-1024x432.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"recruit1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"recruit1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"recruit1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"recruit1-1080x455.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:455;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;}}");
INSERT INTO `wp_postmeta` VALUES("1035", "1041", "_wp_attached_file", "2016/03/manpower-img.jpg");
INSERT INTO `wp_postmeta` VALUES("1036", "1041", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:799;s:6:\"height\";i:743;s:4:\"file\";s:24:\"2016/03/manpower-img.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"manpower-img-150x150.jpg\";s:5:\"width\";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:\"manpower-img-300x278.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"manpower-img-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"manpower-img-799x675.jpg\";s:5:\"width\";i:799;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"manpower-img-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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;}}");
INSERT INTO `wp_postmeta` VALUES("1037", "1046", "_wp_attached_file", "2016/03/Slides10.jpg");
INSERT INTO `wp_postmeta` VALUES("1038", "1046", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:810;s:4:\"file\";s:20:\"2016/03/Slides10.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Slides10-150x150.jpg\";s:5:\"width\";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:\"Slides10-300x126.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"Slides10-1024x432.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"Slides10-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"Slides10-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"Slides10-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"Slides10-1080x455.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:455;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;}}");
INSERT INTO `wp_postmeta` VALUES("1039", "1049", "_wp_attached_file", "2016/03/Slides1.jpg");
INSERT INTO `wp_postmeta` VALUES("1040", "1049", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:810;s:4:\"file\";s:19:\"2016/03/Slides1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Slides1-150x150.jpg\";s:5:\"width\";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:\"Slides1-300x126.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"Slides1-1024x432.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"Slides1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"Slides1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"Slides1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"Slides1-1080x455.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:455;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;}}");
INSERT INTO `wp_postmeta` VALUES("1041", "1050", "_wp_attached_file", "2016/03/Slides101.jpg");
INSERT INTO `wp_postmeta` VALUES("1042", "1050", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:810;s:4:\"file\";s:21:\"2016/03/Slides101.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Slides101-150x150.jpg\";s:5:\"width\";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:\"Slides101-300x126.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Slides101-1024x432.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"Slides101-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"Slides101-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"Slides101-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:22:\"Slides101-1080x455.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:455;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;}}");
INSERT INTO `wp_postmeta` VALUES("1049", "1052", "_edit_lock", "1458298079:1");
INSERT INTO `wp_postmeta` VALUES("1050", "1056", "_wp_attached_file", "2016/03/licens1.jpg");
INSERT INTO `wp_postmeta` VALUES("1051", "1056", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:744;s:6:\"height\";i:941;s:4:\"file\";s:19:\"2016/03/licens1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"licens1-150x150.jpg\";s:5:\"width\";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:\"licens1-237x300.jpg\";s:5:\"width\";i:237;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"licens1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"licens1-744x675.jpg\";s:5:\"width\";i:744;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"licens1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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;}}");
INSERT INTO `wp_postmeta` VALUES("1052", "1057", "_wp_attached_file", "2016/03/licens2.jpg");
INSERT INTO `wp_postmeta` VALUES("1053", "1057", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:744;s:6:\"height\";i:941;s:4:\"file\";s:19:\"2016/03/licens2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"licens2-150x150.jpg\";s:5:\"width\";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:\"licens2-237x300.jpg\";s:5:\"width\";i:237;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"licens2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"licens2-744x675.jpg\";s:5:\"width\";i:744;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"licens2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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;}}");
INSERT INTO `wp_postmeta` VALUES("1054", "1058", "_wp_attached_file", "2016/03/licens3.jpg");
INSERT INTO `wp_postmeta` VALUES("1055", "1058", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:744;s:6:\"height\";i:941;s:4:\"file\";s:19:\"2016/03/licens3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"licens3-150x150.jpg\";s:5:\"width\";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:\"licens3-237x300.jpg\";s:5:\"width\";i:237;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"licens3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"licens3-744x675.jpg\";s:5:\"width\";i:744;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"licens3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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;}}");
INSERT INTO `wp_postmeta` VALUES("1056", "1059", "_wp_attached_file", "2016/03/licens4.jpg");
INSERT INTO `wp_postmeta` VALUES("1057", "1059", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:744;s:6:\"height\";i:941;s:4:\"file\";s:19:\"2016/03/licens4.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"licens4-150x150.jpg\";s:5:\"width\";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:\"licens4-237x300.jpg\";s:5:\"width\";i:237;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"licens4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"licens4-744x675.jpg\";s:5:\"width\";i:744;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"licens4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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;}}");
INSERT INTO `wp_postmeta` VALUES("1058", "1060", "_wp_attached_file", "2016/03/licens5.jpg");
INSERT INTO `wp_postmeta` VALUES("1059", "1060", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:744;s:6:\"height\";i:941;s:4:\"file\";s:19:\"2016/03/licens5.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"licens5-150x150.jpg\";s:5:\"width\";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:\"licens5-237x300.jpg\";s:5:\"width\";i:237;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"licens5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"licens5-744x675.jpg\";s:5:\"width\";i:744;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"licens5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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;}}");
INSERT INTO `wp_postmeta` VALUES("1060", "1061", "_wp_attached_file", "2016/03/licens6.jpg");
INSERT INTO `wp_postmeta` VALUES("1061", "1061", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:744;s:6:\"height\";i:941;s:4:\"file\";s:19:\"2016/03/licens6.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"licens6-150x150.jpg\";s:5:\"width\";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:\"licens6-237x300.jpg\";s:5:\"width\";i:237;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"licens6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"licens6-744x675.jpg\";s:5:\"width\";i:744;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"licens6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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;}}");
INSERT INTO `wp_postmeta` VALUES("1062", "1069", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1063", "1069", "_menu_item_menu_item_parent", "882");
INSERT INTO `wp_postmeta` VALUES("1064", "1069", "_menu_item_object_id", "1052");
INSERT INTO `wp_postmeta` VALUES("1065", "1069", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1066", "1069", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1067", "1069", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1068", "1069", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1069", "1069", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1071", "1070", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1072", "1070", "_menu_item_menu_item_parent", "882");
INSERT INTO `wp_postmeta` VALUES("1073", "1070", "_menu_item_object_id", "1007");
INSERT INTO `wp_postmeta` VALUES("1074", "1070", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1075", "1070", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1076", "1070", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1077", "1070", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1078", "1070", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1080", "1071", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1081", "1071", "_menu_item_menu_item_parent", "882");
INSERT INTO `wp_postmeta` VALUES("1082", "1071", "_menu_item_object_id", "1002");
INSERT INTO `wp_postmeta` VALUES("1083", "1071", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1084", "1071", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1085", "1071", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1086", "1071", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1087", "1071", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1089", "1072", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1090", "1072", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("1091", "1072", "_menu_item_object_id", "792");
INSERT INTO `wp_postmeta` VALUES("1092", "1072", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1093", "1072", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1094", "1072", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1095", "1072", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1096", "1072", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1098", "1073", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1099", "1073", "_menu_item_menu_item_parent", "881");
INSERT INTO `wp_postmeta` VALUES("1100", "1073", "_menu_item_object_id", "337");
INSERT INTO `wp_postmeta` VALUES("1101", "1073", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1102", "1073", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1103", "1073", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1104", "1073", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1105", "1073", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1125", "1083", "_wp_attached_file", "2014/11/Slides21.jpg");
INSERT INTO `wp_postmeta` VALUES("1126", "1083", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:810;s:4:\"file\";s:20:\"2014/11/Slides21.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Slides21-150x150.jpg\";s:5:\"width\";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:\"Slides21-300x126.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"Slides21-1024x432.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"Slides21-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"Slides21-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"Slides21-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"Slides21-1080x455.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:455;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;}}");
INSERT INTO `wp_postmeta` VALUES("1127", "1086", "_wp_attached_file", "2014/11/Slides22.jpg");
INSERT INTO `wp_postmeta` VALUES("1128", "1086", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:810;s:4:\"file\";s:20:\"2014/11/Slides22.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Slides22-150x150.jpg\";s:5:\"width\";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:\"Slides22-300x126.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"Slides22-1024x432.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"Slides22-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"Slides22-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"Slides22-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"Slides22-1080x455.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:455;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;}}");
INSERT INTO `wp_postmeta` VALUES("1129", "1093", "_wp_attached_file", "2016/03/Recruitment.jpg");
INSERT INTO `wp_postmeta` VALUES("1130", "1093", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:810;s:4:\"file\";s:23:\"2016/03/Recruitment.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Recruitment-150x150.jpg\";s:5:\"width\";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:\"Recruitment-300x126.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Recruitment-1024x432.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"Recruitment-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"Recruitment-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"Recruitment-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:24:\"Recruitment-1080x455.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:455;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;}}");
INSERT INTO `wp_postmeta` VALUES("1139", "1103", "_wp_attached_file", "2016/03/LOGO-HRD3.png");
INSERT INTO `wp_postmeta` VALUES("1140", "1103", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:160;s:6:\"height\";i:116;s:4:\"file\";s:21:\"2016/03/LOGO-HRD3.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"LOGO-HRD3-150x116.png\";s:5:\"width\";i:150;s:6:\"height\";i:116;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;}}");
INSERT INTO `wp_postmeta` VALUES("1141", "1105", "_wp_attached_file", "2014/12/web_globe_solution-512.png");
INSERT INTO `wp_postmeta` VALUES("1142", "1105", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:350;s:6:\"height\";i:40;s:4:\"file\";s:34:\"2014/12/web_globe_solution-512.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"web_globe_solution-512-150x40.png\";s:5:\"width\";i:150;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"web_globe_solution-512-300x34.png\";s:5:\"width\";i:300;s:6:\"height\";i:34;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;}}");

/* INSERT TABLE DATA: wp_posts */
INSERT INTO `wp_posts` VALUES("1", "1", "2014-11-14 09:47:06", "2014-11-14 09:47:06", "Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!", "Hello world!", "", "publish", "open", "open", "", "hello-world", "", "", "2014-11-14 09:47:06", "2014-11-14 09:47:06", "", "0", "http://hrd.softons.cu.cc/?p=1", "0", "post", "", "1");
INSERT INTO `wp_posts` VALUES("45", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page Title\" subhead=\"Here is a basic page layout with a right sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\"]\r\n<h2>Just A Standard Page</h2>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum Dolor</h3>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum Dolor</h3>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" area=\"sidebar-1\" background_layout=\"light\" /][/et_pb_column][/et_pb_section]", "Page Right Sidebar", "", "publish", "open", "open", "", "page-right-sidebar", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/page-right-sidebar/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("44", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2ea3f2\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page Title\" subhead=\"Here is a basic page layout with no sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\"]\r\n<h2>Just A Standard Page</h2>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum Dolor</h3>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum Dolor</h3>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Page Fullwidth", "", "publish", "open", "open", "", "page-fullwidth", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/page-fullwidth/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("43", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Welcome To Our Website\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_width=\"1920\" video_bg_height=\"638\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis ac lorema ac tincidunt. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue.[/et_pb_slide][et_pb_slide heading=\"Sky\'s The Limit\" background_color=\"#444444\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" alignment=\"center\" background_layout=\"dark\" button_text=\"A Closer Look\" button_link=\"#\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"Ã®â‚¬â€¦\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"Ã®â‚¬â€¦\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"Ã®â‚¬â€¦\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"Ã®â‚¬â€¦\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"Ã®â‚¬â€¦\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"Ã®â‚¬â€¦\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#27c9b8\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Get Started\" background_color=\"#7ebec5\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]</p><h1>Building a website has never been so fun.</h1><p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#27323a\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]</p><h1>Lorem Ipsum Dolor.</h1><p>Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit. Nec Ã‚Â eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]</p><h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]</p><h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]</p><h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#22262e\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"2700\" percent_sign=\"off\" counter_color=\"#815ab4\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"30\" percent_sign=\"off\" counter_color=\"#2caaca\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"87\" percent_sign=\"off\" counter_color=\"#35bbaa\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"999\" percent_sign=\"off\" counter_color=\"#ef6462\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" include_categories=\"15\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"on\" /][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Slide Title Here\" button_text=\"Shop Now\" button_link=\"http://elegantthemes.com/preview/Divi2/shop-extended/\" background_color=\"#1a86cf\" alignment=\"center\" background_layout=\"dark\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][et_pb_slide heading=\"Slide Title Here\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam er\r\nos at, laoreet metus.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]</p><h1>Core Features</h1><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-builder.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec Ã‚Â eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"http://elegantthemes.com/preview/Divi2/features/#predefined\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec Ã‚Â eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"http://elegantthemes.com/preview/Divi2/features/#layouts\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec Ã‚Â eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-modules.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" icon_placement=\"top\" use_icon=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#2caaca\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec Ã‚Â eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"http://elegantthemes.com/preview/Divi2/features/#mobile\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec Ã‚Â eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec Ã‚Â eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Slide Title Here\" button_text=\"Our Work\" button_link=\"#\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec Ã‚Â eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec Ã‚Â eleifend tincidunt nisi.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]</p><h1>Versatile Layout Options</h1><p>Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#ec6d5f\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"bottom\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#1fa0e3\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"right\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#47bfa4\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#ec6d5f\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" background_color=\"#7ebec5\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"Join Now\"]</p><h1>Look No Further. Get Started Today</h1><p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Homepage Extended", "", "publish", "open", "open", "", "homepage-extended", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/homepage-extended/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("42", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Our Company\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#f7f7f7\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" alignment=\"center\" background_layout=\"light\"]Changing the way you build websites. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Sales & Marketing\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Brand & Identity\" number=\"90\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Web Design\" number=\"80\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"App Development\" number=\"50\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>What We Offer</h2>[/et_pb_text][et_pb_tabs admin_label=\"Tabs\"][et_pb_tab title=\"Overview\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Mission Statement\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Culture\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"50\" /][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#f4f4f4\"][et_pb_counter percent=\"80\"]Brand Consulting[/et_pb_counter][et_pb_counter percent=\"45\"]Marketing Campaigns [/et_pb_counter][et_pb_counter percent=\"95\"]Custom Website Design[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Our Work Flow</h1>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬â€ \" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Â·\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Â¨\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#212a34\" inner_shadow=\"off\" parallax=\"off\" background_image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/05/d2-placeholder-1920.png\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"20\" /][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-300px.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>Frequently Asked Questions</h2>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna. Morbi scelerisque semper congue. Donec vitae congue quam. Pellentesque convallis est a eros porta, ut porttitor magna convallis.\r\n\r\nDonec quis felis imperdiet, vestibulum est ut, pulvinar dolor. Mauris laoreet varius sem, tempus congue nibh elementum facilisis. Aliquam ut odio risus. Mauris consectetur mi et ante aliquam, eget posuere urna semper. Vestibulum vestibulum rhoncus enim, id iaculis eros commodo non.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_accordion admin_label=\"Accordion\"][et_pb_accordion_item title=\"What kind of clients do you work with?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_accordion_item][et_pb_accordion_item title=\"What is your turn around time?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][et_pb_accordion_item title=\"Do you have an affiliate program?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Email\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" title=\"Don\'t Be Shy\"]Drop us a line anytime, and one of our customer service reps will respond to you as soon as possible[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Homepage Corporate", "", "publish", "open", "open", "", "homepage-corporate", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/homepage-corporate/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("41", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Our Company\" button_text=\"Features\" button_link=\"http://elegantthemes.com/preview/Divi2/features/\" background_color=\"#8d1bf4\" alignment=\"center\" background_layout=\"dark\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/05/d2-300px.png\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\"]Quisque eleifend orci sit amet est semper, iaculis tempor mi volutpat. Phasellus consectetur justo sed tristique molestie. Cras lectus quam, vehicula eu dictum a, sollicitudin id velit.[/et_pb_slide][et_pb_slide heading=\"Slide Title\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#f84c48\" alignment=\"center\" background_layout=\"dark\"]Quisque eleifend orci sit amet est semper, iaculis tempor mi volutpat. Phasellus consectetur justo sed tristique molestie. Cras lectus quam, vehicula eu dictum a, sollicitudin id velit.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Cras semper dictum lectus ac bibendum. Sed id massa vel lorem laoreet molestie. Nullam vulputate lacus at mauris molestie porttitor.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Cras semper dictum lectus ac bibendum. Sed id massa vel lorem laoreet molestie. Nullam vulputate lacus at mauris molestie porttitor.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Cras semper dictum lectus ac bibendum. Sed id massa vel lorem laoreet molestie. Nullam vulputate lacus at mauris molestie porttitor.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#4b4b4b\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" title=\"Recent Work\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#eeeeee\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_map admin_label=\"Fullwidth Map\" zoom_level=\"8\" address_lat=\"37.43410184255073\" address_lng=\"-122.04768412931253\"][et_pb_map_pin title=\"Elegant Themes\" pin_address=\"San Francisco, CA, USA\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.41941550000001\" /][et_pb_map_pin title=\"Lorem Ipsum\" pin_address=\"San Jose, CA, USA\" pin_address_lat=\"37.3393857\" pin_address_lng=\"-121.89495549999998\" /][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" title=\"Contact Us\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Homepage Company", "", "publish", "open", "open", "", "homepage-company", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/homepage-company/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("40", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2e2e2e\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"on\"][et_pb_slide background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" heading=\"Hello! Welcome To My Online Portfolio\" /][et_pb_slide background_color=\"#f84b48\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][et_pb_slide background_color=\"#23a1f5\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][et_pb_slide background_color=\"#27c8b8\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\" include_categories=\"62,65,72,69,16\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\" /][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬â€¹\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬â€¹\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬â€¹\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Coding Languages\" number=\"7\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Loyal Clients\" number=\"65\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"International Awards\" number=\"12\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Years of Experience\" number=\"10\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#27c8b8\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"View My Full Portfolio\" button_url=\"#\" button_text=\"Enter\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis ac lorema ac tincidunt.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Homepage Portfolio", "", "publish", "open", "open", "", "homepage-portfolio", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/homepage-portfolio/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("39", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Welcome to Our Shop\" button_text=\"Shop Now\" background_color=\"#0194f3\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" alignment=\"center\" background_layout=\"dark\" button_link=\"#\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Featured Products</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"featured\" posts_number=\"4\" columns=\"4\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>RecentÃ‚Â Products</h1>[/et_pb_text][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"6\" columns=\"3\" orderby=\"date\" /][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Holiday Special Sale\" button_text=\"Shop Now\" background_color=\"#108bf5\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\"]Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.[/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Become a Vendor\" button_text=\"Learn More\" background_color=\"#27c9b9\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\"]Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.[/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" area=\"sidebar-1\" background_layout=\"light\" /][/et_pb_column][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h1>What Our Customers are Saying</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#27c9b9\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Browse Our Full Shop\" button_url=\"#\" button_text=\"Enter\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"dark\" text_orientation=\"center\"]Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Homepage Shop", "", "publish", "open", "open", "", "homepage-shop", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/homepage-shop/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("38", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Welcome To My Website\" button_text=\"Enter\" button_link=\"#\" background_color=\"#27c9b9\" alignment=\"center\" background_layout=\"dark\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][/et_pb_slider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"We Are a Company of Passionate Designers and Developers\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"h\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"Ã®â‚¬Â\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"v\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"g\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Drop Me a Line\" button_url=\"#\" button_text=\"Contact\" background_color=\"#2ea3f2\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Homepage Basic", "", "publish", "open", "open", "", "homepage-basic", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/homepage-basic/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("304", "1", "2014-12-02 11:16:05", "2014-12-02 11:16:05", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/contact-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Enquiry Now </span></p> \r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224E3; font-size:35px; line-height:12px;\">Reach Us </span></p>\r\n\r\n<span style=\"font-size:15px;\"><strong>HRD INTEGRATED MANPOWER SOLUTION</strong></span>\r\nNo. 1st Floor, Dharani Complex , \r\nNear Muthumariamman Temple, Sipcot Post,\r\nDharga, Hosur(tk), Krishnagiri(dt),\r\nTamil Nadu - 635126.\r\n<strong>Land Line</strong> :  04344 – 276172\r\n<strong>Mobile</strong>    : +91 9362310019, +91 9626785460\r\n<strong>Email</strong> : hr@hrdmanpower.com, \r\nsivan@hrdmanpower.com, \r\nadmin@hrdmanpower.com, \r\nmarketing@hrdmanpower.com.\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/web_globe_solution-512.png\" alt=\"web_globe_solution-512\" width=\"220\" height=\"40\" class=\"alignnone size-full wp-image-1105\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "publish", "open", "open", "", "contact-us", "", "", "2016-03-22 12:35:03", "2016-03-22 12:35:03", "", "0", "http://hrd.softons.cu.cc/?page_id=304", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("22", "1", "2014-11-15 06:44:20", "2014-11-15 06:44:20", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides22.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution - Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">What we do ?</h2>\r\n<p style=\"text-align:justify ;\">»  We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-align:center; font:size: 5px;\">Why our service</h2>\r\n<p style=\"text-align:left; \">\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line  </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">Commitment</h2>\r\n<p style=\"text-align:justify\" ;\"=\"\"> » We don\'t simply give services to customers; we tend to foster a long-run relationship that is close & confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:22px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s. Green Vision Technology,\r\n» 	M/s. KEF Infrastructure India Pvt. Ltd., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s. Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s. Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s. Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh,\r\n» 	M/s. ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiri\'s Mechanised Bakery Pvt. Ltd.\r\n»	M/s. Sobha Developers .Ltd, Bommasandra.\r\n»	M/s. Sobha Developers Ltd., Rajasthan\r\n»	M/s. Mukundan Diary Products Ltd.,\r\n»	M/s. Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s. Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "publish", "open", "open", "", "home", "", "", "2016-03-22 12:37:29", "2016-03-22 12:37:29", "", "0", "http://hrd.softons.cu.cc/?page_id=22", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("936", "1", "2016-03-14 05:11:22", "2016-03-14 05:11:22", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify ;\">&raquo; We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify\" ;\"=\"\"> We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 05:11:22", "2016-03-14 05:11:22", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("905", "1", "2016-03-11 12:15:09", "2016-03-11 12:15:09", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform:uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or specialty.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We do the work the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides4.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#1e73be; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#1e73be; font-size:25px;\">HOSUR (TN)</span></p>\r\n\r\n<p style=\"text-align:left;\">\r\n&amp;raqu;	M/s. Micro Labs Ltd., Unit I,\r\n&amp;raqu;      M/s  Green Vision Technology\r\n&amp;raqu; 	M/s. KEF Infrastructure India Pvt. td., \r\n&amp;raqu; 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n&amp;raqu; 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n&amp;raqu; 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n&amp;raqu; 	M/s.Ritway Packages Pvt. Ltd.,\r\n&amp;raqu;	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n&amp;raqu; 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#1e73be; font-size:25px;\">BANGALORE</span></p>\r\n\r\n<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s.Sobha Developers .Ltd, Bommasandra.\r\n»	M/s.Sobha Developers Ltd., Rajasthan\r\n»	M/s.Mukundan Diary Products Ltd.,\r\n»	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 12:15:09", "2016-03-11 12:15:09", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("874", "1", "2016-03-11 05:30:55", "2016-03-11 05:30:55", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides11.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is a recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» Every person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">To understand your deepest desires You, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify; \">Quality is non-negotiable, and we deliver it, no matter what the odds are. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">Showcased in a track record of excellence, Integrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 05:30:55", "2016-03-11 05:30:55", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("708", "1", "2015-03-20 09:47:15", "2015-03-20 09:47:15", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#dd3333\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#12ae36;\"><b>We at Nandaavana Properties strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 09:47:15", "2015-03-20 09:47:15", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("23", "1", "2014-11-15 06:44:20", "2014-11-15 06:44:20", "", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 06:44:20", "2014-11-15 06:44:20", "", "22", "http://hrd.softons.cu.cc/?p=23", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("24", "1", "2014-11-15 06:45:04", "2014-11-15 06:45:04", "[et_pb_section][et_pb_row][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 06:45:04", "2014-11-15 06:45:04", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("27", "1", "2014-11-15 06:47:38", "2014-11-15 06:47:38", "[et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"on\" auto=\"off\" auto_speed=\"7000\"]\r\n[et_pb_slide heading=\"Welcome To Our Store\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"View Special Offers\" background_color=\"#492144\" button_link=\"http://elegantthemes.com\"]No matter how you use Divi, your website is going to look great. Everything about Divi has been built beautifully and purposefully by our passionate team. We are so excited to release this labor of love to our community.[/et_pb_slide]\r\n[et_pb_slide heading=\"Today\'s Sale Items\" button_text=\"Order Today\" background_color=\"#6aceb6\" button_link=\"http://elegantthemes.com\" image=\"http://www.elegantthemesimages.com/images/premade_image_800x600.png\" image_alt=\"Alt text for the image\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis.[/et_pb_slide]\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_shop admin_label=\"Shop\" posts_number=\"12\" type=\"recent\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"The Holiday Special Sale\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Redeem This Offer\" background_layout=\"dark\" background_color=\"#7ebec5\"]\r\nFor a limited time only, all of our holiday products are 50% off! Don\'t miss your chance to save big on these wonderful items.[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"The Holiday Special Sale\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Redeem This Offer\" background_layout=\"light\" background_color=\"#fff\"]\r\nFor a limited time only, all of our holiday products are 50% off! Don\'t miss your chance to save big on these wonderful items.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\"]\r\n<h2>Products On Sale</h2>\r\nTake a look at these special offers.\r\n[/et_pb_text][et_pb_shop admin_label=\"Shop\" posts_number=\"4\" type=\"sale\" columns=\"2\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\"]\r\n<h2>Top Rated Products</h2>\r\nA list of our latest products.[/et_pb_text][et_pb_shop admin_label=\"Shop\" posts_number=\"4\" type=\"top_rated\" columns=\"2\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7EBEC5\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 06:47:38", "2014-11-15 06:47:38", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("26", "1", "2014-11-15 06:46:08", "2014-11-15 06:46:08", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\"]\r\n[et_pb_slide heading=\"Divi\" button_text=\"Join Today\" background_color=\"#444b5d\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_link=\"http://elegantthemes.com\" image=\"http://www.elegantthemesimages.com/images/premade-logo.png\" image_alt=\"Alt text for the image\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_slide]\r\n[et_pb_slide heading=\"Divi\" button_text=\"Join Today\" background_color=\"#144d6a\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg_2.jpg\" button_link=\"http://elegantthemes.com\"]The only theme you will ever need.[/et_pb_slide]\r\n[/et_pb_slider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" height=\"1\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\"]\r\n<h1 style=\"font-size: 32px;\">STUNNING PORTFOLIOS</h1>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\"]With DiviÃ¢â‚¬â„¢s portfolio module, you can show off your work anywhere on your site. Choose from our premade portfolio layouts, or create one entirely from scratch![/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade-portfolios.gif\" animation=\"right\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" height=\"1\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\"]\r\n<h1 style=\"font-size: 32px;\">ECOMMERCE INTEGRATION</h1>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\"]Divi has what you need to get an online store up and running in no time. WeÃ¢â‚¬â„¢ve included a couple of premade store layouts, and the store module lets you sell anywhere on your site.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade-ecommerce.gif\" animation=\"right\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"#7EBEC5\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 06:46:08", "2014-11-15 06:46:08", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("25", "1", "2014-11-15 06:45:33", "2014-11-15 06:45:33", "[et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"on\" auto=\"off\" auto_speed=\"7000\"]\r\n[et_pb_slide heading=\"Designed With Passion\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://elegantthemes.com\"]No matter how you use Divi, your website is going to look great. Everything about Divi has been built beautifully and purposefully by our passionate team. We are so excited to release this labor of love to our community.[/et_pb_slide]\r\n[et_pb_slide heading=\"Elegantly Responsive\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://elegantthemes.com\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis.[/et_pb_slide]\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\"]\r\n<h2>It\'s Elegantly Responsive</h2>\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\r\n[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\"]\r\n[et_pb_counter percent=\"50\"]Smart[/et_pb_counter]\r\n[et_pb_counter percent=\"80\"]Flexible[/et_pb_counter]\r\n[et_pb_counter percent=\"40\"]Beautiful[/et_pb_counter]\r\n[/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]\r\n<h2>With Our Most Advanced Page Builder Yet.</h2>\r\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 06:45:33", "2014-11-15 06:45:33", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("28", "1", "2014-11-15 06:48:47", "2014-11-15 06:48:47", "[et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"on\" auto=\"off\" auto_speed=\"7000\"]\r\n[et_pb_slide heading=\"Designed With Passion\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://elegantthemes.com\"]No matter how you use Divi, your website is going to look great. Everything about Divi has been built beautifully and purposefully by our passionate team. We are so excited to release this labor of love to our community.[/et_pb_slide]\r\n[et_pb_slide heading=\"Elegantly Responsive\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://elegantthemes.com\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis.[/et_pb_slide]\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\"]\r\n<h2>It\'s Elegantly Responsive</h2>\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\r\n[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\"]\r\n[et_pb_counter percent=\"50\"]Smart[/et_pb_counter]\r\n[et_pb_counter percent=\"80\"]Flexible[/et_pb_counter]\r\n[et_pb_counter percent=\"40\"]Beautiful[/et_pb_counter]\r\n[/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]\r\n<h2>With Our Most Advanced Page Builder Yet.</h2>\r\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 06:48:47", "2014-11-15 06:48:47", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("32", "1", "2014-11-15 09:09:09", "0000-00-00 00:00:00", "[et_pb_section][et_pb_row][/et_pb_row][/et_pb_section]", "", "", "draft", "open", "open", "", "", "", "", "2014-11-15 09:09:09", "2014-11-15 09:09:09", "", "0", "http://hrd.softons.cu.cc/?post_type=project&#038;p=32", "0", "project", "", "0");
INSERT INTO `wp_posts` VALUES("30", "1", "2014-11-15 06:51:05", "2014-11-15 06:51:05", "[et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"on\" auto=\"off\" auto_speed=\"7000\"]\r\n[et_pb_slide heading=\"Designed With Passion\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://elegantthemes.com\"]No matter how you use Divi, your website is going to look great. Everything about Divi has been built beautifully and purposefully by our passionate team. We are so excited to release this labor of love to our community.[/et_pb_slide]\r\n[et_pb_slide heading=\"Elegantly Responsive\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://elegantthemes.com\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis.[/et_pb_slide]\r\n[/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome To Nandaavana Properties\" subhead=\"Hosur\" background_layout=\"light\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\"]\r\n<h2>It\'s Elegantly Responsive</h2>\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\r\n[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\"]\r\n[et_pb_counter percent=\"50\"]Smart[/et_pb_counter]\r\n[et_pb_counter percent=\"80\"]Flexible[/et_pb_counter]\r\n[et_pb_counter percent=\"40\"]Beautiful[/et_pb_counter]\r\n[/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]\r\n<h2>With Our Most Advanced Page Builder Yet.</h2>\r\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 06:51:05", "2014-11-15 06:51:05", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("31", "1", "2014-11-15 06:52:04", "2014-11-15 06:52:04", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"on\" auto=\"off\" auto_speed=\"7000\"]\r\n[et_pb_slide heading=\"Designed With Passion\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://elegantthemes.com\"]No matter how you use Divi, your website is going to look great. Everything about Divi has been built beautifully and purposefully by our passionate team. We are so excited to release this labor of love to our community.[/et_pb_slide]\r\n[et_pb_slide heading=\"Elegantly Responsive\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://elegantthemes.com\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis.[/et_pb_slide]\r\n[/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome To Nandaavana Properties -Hosur\" background_layout=\"light\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\"]\r\n<h2>It\'s Elegantly Responsive</h2>\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\r\n[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\"]\r\n[et_pb_counter percent=\"50\"]Smart[/et_pb_counter]\r\n[et_pb_counter percent=\"80\"]Flexible[/et_pb_counter]\r\n[et_pb_counter percent=\"40\"]Beautiful[/et_pb_counter]\r\n[/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]\r\n<h2>With Our Most Advanced Page Builder Yet.</h2>\r\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 06:52:04", "2014-11-15 06:52:04", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("34", "1", "2014-11-15 09:10:38", "2014-11-15 09:10:38", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"on\" auto=\"off\" auto_speed=\"7000\"]\r\n[et_pb_slide heading=\"Designed With Passion\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://elegantthemes.com\"]No matter how you use Divi, your website is going to look great. Everything about Divi has been built beautifully and purposefully by our passionate team. We are so excited to release this labor of love to our community.[/et_pb_slide]\r\n[et_pb_slide heading=\"Elegantly Responsive\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://elegantthemes.com\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis.[/et_pb_slide]\r\n[/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"\r\n<p align=\"center\">Welcome To Nandaavana Properties -Hosur</p>\r\n&gt;\" background_layout=\"light\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\"]\r\n<h2>It\'s Elegantly Responsive</h2>\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\r\n[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\"]\r\n[et_pb_counter percent=\"50\"]Smart[/et_pb_counter]\r\n[et_pb_counter percent=\"80\"]Flexible[/et_pb_counter]\r\n[et_pb_counter percent=\"40\"]Beautiful[/et_pb_counter]\r\n[/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]\r\n<h2>With Our Most Advanced Page Builder Yet.</h2>\r\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 09:10:38", "2014-11-15 09:10:38", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("656", "1", "2015-01-02 10:37:09", "2015-01-02 10:37:09", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\"><strong>NANDAAVANA PROPERTIES</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Our Vision</span>\r\n<p style=\"text-align: justify;\">Upgrading lifestyle for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">&nbsp;Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"100\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row]</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\">NANDAAVANA PROPERTIES has been one of the leading developers in HOSUR &amp; BANGALORE</span></p>\r\n<p style=\"text-align:center;\">Nandaavana Properties can provide a complete range of amenities to ensure that you enjoy your stay with us. </p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-01-02 10:37:09", "2015-01-02 10:37:09", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("615", "1", "2014-12-30 11:35:41", "2014-12-30 11:35:41", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\"><strong>NANDAAVANA PROPERTIES</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">&nbsp;Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"90\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"95\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"92\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"96\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"94\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\">NANDAAVANA PROPERTIES has been one of the leading developers in HOSUR & BANGALORE</span></p>\r\n<p style=\"text-align:center;\">Nandaavana Properties can provide a complete range of amenities to ensure that you enjoy your stay with us. </p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-30 11:35:41", "2014-12-30 11:35:41", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("616", "1", "2014-12-31 04:33:56", "2014-12-31 04:33:56", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/contactus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">ENQUIRY NOW </span></p> \r\n\r\nWhenever you think to buy luxury villas, permanent as well as temporary, we are always at your service to the fullest extent.\r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">OFFICE @ </span></p> \r\n\r\nPlot No 20, \r\nThe Exotic Near TTK Prestige,\r\nSipcot Phase 1,\r\nHosur - 635109.\r\n\r\n\r\n<strong>Mobile</strong> : +91 96591 09333\r\n\r\n\r\n<strong>Email</strong> : info@nandaavanaproperties.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2014-12-31 04:33:56", "2014-12-31 04:33:56", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("617", "1", "2014-12-31 04:34:40", "2014-12-31 04:34:40", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides5.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to your OFFICE[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Centralized water system for round the clock[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-31 04:34:40", "2014-12-31 04:34:40", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("36", "1", "2014-11-15 09:11:32", "2014-11-15 09:11:32", "<p>[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"on\" auto=\"off\" auto_speed=\"7000\"]<br /> [et_pb_slide heading=\"Designed With Passion\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://elegantthemes.com\"]No matter how you use Divi, your website is going to look great. Everything about Divi has been built beautifully and purposefully by our passionate team. We are so excited to release this labor of love to our community.[/et_pb_slide]<br /> [et_pb_slide heading=\"Elegantly Responsive\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://elegantthemes.com\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis.[/et_pb_slide]<br /> [/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"Welcom to Nandaavana Properties\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\"]</p><h2>It\'s Elegantly Responsive</h2><p>Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.<br /> [/et_pb_text][et_pb_counters admin_label=\"Animated Counters\"]<br /> [et_pb_counter percent=\"50\"]Smart[/et_pb_counter]<br /> [et_pb_counter percent=\"80\"]Flexible[/et_pb_counter]<br /> [et_pb_counter percent=\"40\"]Beautiful[/et_pb_counter]<br /> [/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]</p><h2>With Our Most Advanced Page Builder Yet.</h2><p>Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.<br /> [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]<br /> Join today and get access to Divi, as well as our other countless themes and plugins.<br /> [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]</p>", "Home Page layout Template", "", "publish", "open", "open", "", "home-page-layout-template", "", "", "2014-11-15 09:11:32", "2014-11-15 09:11:32", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/home-page-layout-template/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("46", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page With Left Sidebar\" subhead=\"Here is a basic page layout with a left sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"left\" area=\"sidebar-1\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\"]\r\n<h2>Just A Standard Page</h2>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum Dolor</h3>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum Dolor</h3>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]", "Page Left Sidebar", "", "publish", "open", "open", "", "page-left-sidebar", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/page-left-sidebar/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("47", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page With Dual Sidebars\" subhead=\"Here is a basic page layout with dual sidebars\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"left\" area=\"sidebar-1\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\"]\r\n<h2>Just A Standard Page</h2>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum Dolor</h3>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum Dolor</h3>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" area=\"sidebar-1\" background_layout=\"light\" /][/et_pb_column][/et_pb_section]", "Page Dual Sidebars", "", "publish", "open", "open", "", "page-dual-sidebars", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/page-dual-sidebars/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("48", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"My Work\" subhead=\"Your Subtitle Goes Here\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_filterable_portfolio admin_label=\"Filterable Portfolio\" fullwidth=\"off\" posts_number=\"12\" show_title=\"on\" show_categories=\"on\" show_pagination=\"off\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Like What You See?\" button_url=\"#\" button_text=\"Contact Me\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Portfolio Grid", "", "publish", "open", "open", "", "portfolio-grid", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/portfolio-grid/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("49", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"My Work\" subhead=\"Your Subtitle Goes Here\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_portfolio admin_label=\"Portfolio\" fullwidth=\"on\" posts_number=\"4\" show_title=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"I Love Working With Creative Minds\" button_url=\"#\" button_text=\"Contact Me\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]If you are interested in working together, send meÃ‚Â an inquiry and IÃ‚Â will get back to you as soonÃ‚Â as I can![/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Portfolio 1 Column", "", "publish", "open", "open", "", "portfolio-1-column", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/portfolio-1-column/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("50", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\"][et_pb_slide background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"light\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Let\'s Build Something Together\" button_url=\"#\" button_text=\"Contact Me\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Portfolio Fullwidth Carousel", "", "publish", "open", "open", "", "portfolio-fullwidth-carousel", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/portfolio-fullwidth-carousel/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("51", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"off\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested In Working On A Project?\" button_url=\"#\" button_text=\"Contact Me\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Portfolio Fullwidth Grid", "", "publish", "open", "open", "", "portfolio-fullwidth-grid", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/portfolio-fullwidth-grid/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("52", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section background_color=\"#3a3a3a\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#45c4ec\" use_circle=\"off\" circle_color=\"#45c4ec\" use_circle_border=\"off\" circle_border_color=\"#45c4ec\" icon_placement=\"top\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 72px; font-weight: 300;\">Your Project Name</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Challenge</h2>\r\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.Ã‚Â Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>TheÃ‚Â Solution</h2>\r\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.Ã‚Â Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Complete Corporate Identity\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"We Rethought Everything\" background_color=\"#2ea3f2\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Corporate Rebranding\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" counter_color=\"#2ea3f2\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Website Redesign\" number=\"30\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Day Turnaround\" number=\"60\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Amazing Result\" number=\"1\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"90\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<h1>Mobile Site Boosted Sales By 50%</h1>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Mobile Refresh\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Å’\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Rebuilt From the Inside Out\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Â¸\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Extensive Demographic Studies\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Â©\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/mobile-lockup.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#2e2e2e\"][et_pb_counter percent=\"80\"]Mobile Sales[/et_pb_counter][et_pb_counter percent=\"50\"]Website Traffic[/et_pb_counter][et_pb_counter percent=\"75\"]Conversion Rate[/et_pb_counter][et_pb_counter percent=\"60\"]Email Subscribers[/et_pb_counter][/et_pb_counters][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"The Results Were Amazing\" button_url=\"#\" button_text=\"Live Project\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"We Rethought Everything\" background_color=\"#2ea3f2\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"Complete Corporate Identity\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested In Working With Us?\" button_url=\"#\" button_text=\"Get In Touch\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Project Extended", "", "publish", "open", "open", "", "project-extended", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/project-extended/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("53", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Your Project Name</h1>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h4>Project Description</h4>\r\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue at nisl.Ã‚Â Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h4>ProjectÃ‚Â Details</h4>\r\n<strong>ClientÃ‚Â </strong>Client Name\r\n<strong>DateÃ‚Â </strong>Date of Completion\r\n<strong>SkillsÃ‚Â </strong>Branding, Web Design\r\n<strong>ViewÃ‚Â </strong>elegantthemes.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Project Feature\" button_url=\"#\" button_text=\"Live Project\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"light\" text_orientation=\"left\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nislÃ‚Â quis nibh non, molestie tempus sapien.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"100\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Project Feature\" button_url=\"#\" button_text=\"See More\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"light\" text_orientation=\"right\"]Vivamus ipsum velit, ullamcorper quis nibh, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_cta][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-700px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Like What You See?\" button_url=\"#\" button_text=\"Contact Us\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Project Extended 2", "", "publish", "open", "open", "", "project-extended-2", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/project-extended-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("54", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to My Blog\" subhead=\"Here is a masonry blog layout with no sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"off\" posts_number=\"18\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Blog Masonry", "", "publish", "open", "open", "", "blog-masonry", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/blog-masonry/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("55", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to My Blog\" subhead=\"Here is a basic blog layout with a right sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" area=\"sidebar-1\" background_layout=\"light\" /][/et_pb_column][/et_pb_section]", "Blog Standard", "", "publish", "open", "open", "", "blog-standard", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/blog-standard/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("56", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#f84b48\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to Our Shop\" subhead=\"Divi gives you the power to run a full-fledged online storefront.\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"12\" columns=\"4\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"News & Events\" button_url=\"#\" button_text=\"Follow\" use_background_color=\"on\" background_color=\"#57ccc4\" background_layout=\"dark\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Shop Basic", "", "publish", "open", "open", "", "shop-basic", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/shop-basic/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("57", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#b2ede0\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Our Shop\" button_text=\"Shop Now\" button_link=\"#\" background_color=\"#81dfde\" alignment=\"center\" background_layout=\"dark\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\"]Divi gives you the power to easily run a full-fledged online storefront. With the Divi Builder, you can create gorgeous shop pages, such as this one.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"6\" columns=\"3\" orderby=\"menu_order\" /][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Summer Sale!\" button_url=\"#\" button_text=\"Shop Now\" background_color=\"#ed5362\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"]For a limited time only, all of our vintageÃ‚Â products are 50% off! DonÃ¢â‚¬â„¢t miss your chance to save big on these wonderful items.[/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Buy 2 Get 1 Free\" button_url=\"#\" button_text=\"Coupon Code\" background_color=\"#57ccc4\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"]For a limited time only, if you buy two of any item, you get the 3rd for free! Click below to redeem the coupon code to use at checkout.[/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" area=\"sidebar-1\" background_layout=\"light\" /][/et_pb_column][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Our Most Popular Items</h1>[/et_pb_text][et_pb_shop admin_label=\"Shop\" type=\"best_selling\" posts_number=\"4\" columns=\"4\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#57ccc4\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"View All of Our On-Sale Items\" button_url=\"#\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_text=\"Shop Now\"]For a limited time only, all of our vintageÃ‚Â products are 50% off! DonÃ¢â‚¬â„¢t miss your chance to save big on these wonderful items.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Shop Extended", "", "publish", "open", "open", "", "shop-extended", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/shop-extended/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("58", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"150\" /][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/d2-300px.png\" animation=\"bottom\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]<h1></h1>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h4><strong>Lorem Ipsum Dolor</strong></h4>\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h4><strong>Lorem Ipsum Dolor</strong></h4>\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h4><strong>Lorem Ipsum Dolor</strong></h4>\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_text=\"Enter\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"400\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Splash Page", "", "publish", "open", "open", "", "splash-page", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/splash-page/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("59", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-builder.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>We will Be back Soon</h1>\r\nThis is an example of a blank page with no header or footer.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Undergoing Maintenance\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Âµ\" icon_color=\"#63cde3\" use_circle=\"on\" circle_color=\"#f7f7f7\" use_circle_border=\"on\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Feature Updates\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â€šâ€˜\" icon_color=\"#63cde3\" use_circle=\"on\" circle_color=\"#f7f7f7\" use_circle_border=\"on\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Bug Fixes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Â®\" icon_color=\"#63cde3\" use_circle=\"on\" circle_color=\"#f7f7f7\" use_circle_border=\"on\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Contact Us\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Maintenance Mode", "", "publish", "open", "open", "", "maintenance-mode", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/maintenance-mode/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("60", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section inner_shadow=\"off\" parallax=\"off\" background_color=\"#8d1bf4\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\" /][et_pb_countdown_timer admin_label=\"Countdown Timer\" date_time=\"05/31/2014 05:15\" background_layout=\"dark\" background_color=\"#e03e3e\" use_background_color=\"off\" title=\"This Site Is Coming Soon\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Subscribe\" title=\"Sign Up to Receive Updates\" button_text=\"Submit\" background_color=\"#6e15c2\" use_background_color=\"on\" mailchimp_list=\"none\" background_layout=\"dark\" text_orientation=\"left\" provider=\"mailchimp\" aweber_list=\"none\"]Integer accumsan leo non nisi sollicitudin, sit amet eleifend dolor mollis. Donec sagittis posuere commodo. Aenean sed convallis lectus. Vivamus et nisi posuere erat aliquet adipiscing in non libero. Integer ornare dui at molestie dictum. Vivamus id aliquam urna. Duis quis fermentum lacus. Sed viverra dui leo, non auctor nisi porttitor a. Nunc a tristique lectus.[/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Contact Us\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"600\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "publish", "open", "open", "", "coming-soon", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/coming-soon/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("61", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section background_color=\"#27323a\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 72px;\">My Website</h1>\r\n<h2><em>My Tagline</em></h2>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Lorem ipsum dolor sit amet consectetur.\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#313f55\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#27323a\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"right\" /][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Get Started\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Landing Page", "", "publish", "open", "open", "", "landing-page", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/landing-page/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("62", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"My Name\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Subheading[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>This is My Story</h1>\r\nCurabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut id est euismod, rhoncus nunc quis, lobortis turpis. Tam sociis natoque. Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes.[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#dddddd\" bar_bg_color=\"#2ea3f2\"][et_pb_counter percent=\"80\"]Brand Strategy[/et_pb_counter][et_pb_counter percent=\"60\"]Internet Marketing[/et_pb_counter][et_pb_counter percent=\"50\"]App Development[/et_pb_counter][et_pb_counter percent=\"90\"]Customer Happiness[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#108bf5\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"My Recent Work\" background_layout=\"dark\" text_orientation=\"center\" /][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"light\" auto=\"on\" /][/et_pb_section]", "About Me", "", "publish", "open", "open", "", "about-me", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/about-me/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("63", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Our Company\" button_text=\"Learn More\" button_link=\"#\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Our Company Tagline lorem ipsum dolor sit amet.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"A Digital Agency\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Å½\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Forward Thinking\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®ÂÂ°\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Problem Solvers\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Â¸\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Customer Support\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Â¨\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Our Story</h1>\r\nCurabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut id est euismod, rhoncus nunc quis, lobortis turpis. Tam sociis natoque. Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes.[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#dddddd\" bar_bg_color=\"#2ea3f2\"][et_pb_counter percent=\"80\"]Brand Strategy[/et_pb_counter][et_pb_counter percent=\"60\"]Internet Marketing[/et_pb_counter][et_pb_counter percent=\"50\"]App Development[/et_pb_counter][et_pb_counter percent=\"90\"]Customer Happiness[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "publish", "open", "open", "", "about-us", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/about-us/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("64", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_map admin_label=\"Fullwidth Map\" zoom_level=\"9\" address_lat=\"37.77492949999972\" address_lng=\"-122.41941550000001\"][et_pb_map_pin title=\"Headquarters\" pin_address=\"San Francisco, CA, USA\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.41941550000001\" /][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fullwidth=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" title=\"Get In Touch\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h3>More Info</h3>\r\n<p>sit amet, consectetur adipiscing elit. Integer placerat metus id orci facilisis, in luctus eros laoreet. Mauris interdum augue varius, faucibus massa id, imperdiet tortor. Donec vel tortor molestie, hendrerit sem a, hendrerit arcu. Aliquam erat volutpat. Proin varius eros eros, non condimentum nis.</p>\r\n\r\n<strong>Address:</strong> 890 Lorem Ipsum Street #12\r\nSan Francisco, California 65432\r\n\r\n<strong>Phone:</strong> 123.4567.890\r\n\r\n<strong>Business Hours:</strong> 8aÃ¢â‚¬â€œ6:30p M-F, 9aÃ¢â‚¬â€œ2p S-S[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "publish", "open", "open", "", "contact-us", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/contact-us/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("65", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section background_color=\"#6aceb6\" inner_shadow=\"on\" fullwidth=\"on\"]\r\n[et_pb_fullwidth_header title=\"About Our Team\" subhead=\"Your subtitle goes right here.\" background_layout=\"dark\"][/et_pb_fullwidth_header]\r\n[/et_pb_section]\r\n\r\n[et_pb_section]\r\n[et_pb_row]\r\n[et_pb_column type=\"1_3\"]\r\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"left\"][/et_pb_image]\r\n[et_pb_text]\r\n<h2>Nick Roach</h2>\r\n<em>President, CEO, Theme UI/UX Designer</em>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\r\n[/et_pb_text]\r\n[et_pb_counters]\r\n[et_pb_counter percent=\"50\"]Design & UX[/et_pb_counter]\r\n[et_pb_counter percent=\"80\"]Web Programming[/et_pb_counter]\r\n[et_pb_counter percent=\"10\"]Internet Marketing[/et_pb_counter]\r\n[/et_pb_counters]\r\n[/et_pb_column]\r\n\r\n[et_pb_column type=\"1_3\"]\r\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"top\"][/et_pb_image]\r\n[et_pb_text]\r\n<h2>Kenny Sing</h2>\r\n<em>Lead Graphic Designers</em>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\r\n[/et_pb_text]\r\n[et_pb_counters]\r\n[et_pb_counter percent=\"85\"]Photoshop[/et_pb_counter]\r\n[et_pb_counter percent=\"70\"]After Effects[/et_pb_counter]\r\n[et_pb_counter percent=\"50\"]Illustrator[/et_pb_counter]\r\n[/et_pb_counters]\r\n[/et_pb_column]\r\n\r\n[et_pb_column type=\"1_3\"]\r\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"right\"][/et_pb_image]\r\n[et_pb_text]\r\n<h2>Mitch Skolnik</h2>\r\n<em>Community Manager</em>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\r\n[/et_pb_text]\r\n[et_pb_counters]\r\n[et_pb_counter percent=\"80\"]Customer Happiness[/et_pb_counter]\r\n[et_pb_counter percent=\"30\"]Tech Support[/et_pb_counter]\r\n[et_pb_counter percent=\"50\"]Community Management[/et_pb_counter]\r\n[/et_pb_counters]\r\n[/et_pb_column]\r\n[/et_pb_row]\r\n[/et_pb_section]\r\n\r\n[et_pb_section background_color=\"#2d3743\" inner_shadow=\"on\"]\r\n[et_pb_row]\r\n[et_pb_column type=\"1_4\"]\r\n[et_pb_blurb background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_5.png\"  title=\"Timely Support\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\r\n[/et_pb_column]\r\n[et_pb_column type=\"1_4\"]\r\n[et_pb_blurb background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_6.png\"  title=\"Innovative Ideas\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\r\n[/et_pb_column]\r\n[et_pb_column type=\"1_4\"]\r\n[et_pb_blurb background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_7.png\"  title=\"Advanced Technology\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\r\n[/et_pb_column]\r\n[et_pb_column type=\"1_4\"]\r\n[et_pb_blurb background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_8.png\"  title=\"Clear Communication\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\r\n[/et_pb_column]\r\n[/et_pb_row]\r\n[/et_pb_section]\r\n\r\n[et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"]\r\n[et_pb_row]\r\n[et_pb_column type=\"4_4\"]\r\n[et_pb_text text_orientation=\"center\"]<h2>Recent Blog Posts</h2>\r\nLearn from the top thought leaders in the industry.\r\n[/et_pb_text]\r\n[/et_pb_column]\r\n[/et_pb_row]\r\n[et_pb_row]\r\n[et_pb_column type=\"4_4\"]\r\n[et_pb_blog fullwidth=\"off\" show_pagination=\"off\" posts_number=\"3\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\"][/et_pb_blog]\r\n[/et_pb_column]\r\n[/et_pb_row]\r\n[/et_pb_section]\r\n\r\n[et_pb_section]\r\n[et_pb_row]\r\n[et_pb_column type=\"4_4\"]\r\n[et_pb_text text_orientation=\"center\"]<h2>Recent Projects</h2>\r\nLearn from the top thought leaders in the industry.\r\n[/et_pb_text]\r\n[/et_pb_column]\r\n[/et_pb_row]\r\n[et_pb_row]\r\n[et_pb_column type=\"4_4\"]\r\n[et_pb_portfolio categories=\"Portfolio\" fullwidth=\"off\"][/et_pb_portfolio]\r\n[/et_pb_column]\r\n[/et_pb_row]\r\n[/et_pb_section]\r\n\r\n[et_pb_section background_color=\"#7EBEC5\"]\r\n[et_pb_row]\r\n[et_pb_column type=\"4_4\"]\r\n[et_pb_cta title=\"Don\'t Be Shy. Get In Touch.\" button_url=\"#\" button_text=\"Contact Us\" background_layout=\"dark\" background_color=\"none\"]\r\nIf you are interested in working together, send us an inquiry and we will get back to you as soon as we can!\r\n[/et_pb_cta]\r\n[/et_pb_column]\r\n[/et_pb_row]\r\n[/et_pb_section]", "Our Team", "", "publish", "open", "open", "", "our-team", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/our-team/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("66", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"WE ARE A CREATIVE AGENCY\" button_text=\"Our Work\" button_link=\"http://elegantthemes.com/preview/Divi2/fullwidth-grid/\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>OUR LATEST WORK</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_portfolio admin_label=\"Portfolio\" fullwidth=\"off\" posts_number=\"8\" show_title=\"on\" show_categories=\"off\" show_pagination=\"off\" background_layout=\"light\" /][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Portfolio\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1>MEET THE CREW</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Profiles\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>OUR CLIENTS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/05/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/05/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/05/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/05/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/05/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/05/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/05/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/05/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full List\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2ea3f2\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Subscribe\" provider=\"mailchimp\" mailc\r\nhimp_list=\"none\" aweber_list=\"3423452\" button_text=\"Sign Me Up\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Connect With Us\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio. Nulla facilisi. Aenean in mi odio. Etiam adipiscing enim sed condimentum ultrices.[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Creative Agency", "", "publish", "open", "open", "", "creative-agency", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/creative-agency/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("67", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"A Brand New Product\" background_color=\"#efefef\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" alignment=\"center\" background_layout=\"light\" button_text=\"Buy Now\"]The Divi Builder allows you to create beautiful and unique layouts visually, without touching a single line of code.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Gorgeous Design\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Å½\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Drag & Drop Builder\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"1\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Fully Responsive\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬â€¹\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f3f3f3\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>Plans and Pricing</h1>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_pricing_tables admin_label=\"Pricing Table\"][et_pb_pricing_table featured=\"off\" title=\"Basic\" currency=\"$\" per=\"yr\" sum=\"39\" button_url=\"http://elegantthemes.com/\" button_text=\"Sign Up\"]+Access toÃ‚Â <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\r\n+Perpetual Theme Updates\r\n-Premium Technical Support\r\n-Access toÃ‚Â <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\r\n-Layered Photoshop Files\r\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"off\" title=\"Personal\" currency=\"$\" per=\"yr\" sum=\"69\" button_url=\"http://elegantthemes.com/\" button_text=\"Sign Up\"]+Access toÃ‚Â <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\r\n+Perpetual Theme Updates\r\n+Premium Technical Support\r\n-Access toÃ‚Â <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\r\n-Layered Photoshop Files\r\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"on\" title=\"Developer\" subtitle=\"Best Value\" currency=\"$\" per=\"yr\" sum=\"89\" button_url=\"http://elegantthemes.com/\" button_text=\"Sign Up\"]+Access toÃ‚Â <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\r\n+Perpetual Theme Updates\r\n+Premium Technical Support\r\n+Access toÃ‚Â <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\r\n+Layered Photoshop Files\r\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"off\" title=\"Lifetime\" currency=\"$\" sum=\"249\" button_url=\"http://elegantthemes.com/\" button_text=\"Sign Up\"]+Access toÃ‚Â <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\r\n+Perpetual Theme Updates\r\n+Premium Technical Support\r\n+Access toÃ‚Â <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\r\n+Layered Photoshop Files\r\n+No Yearly Fees[/et_pb_pricing_table][/et_pb_pricing_tables][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Customers Are Saying</h1>\r\nDonÃ¢â‚¬â„¢t just take it from us, let our customers do the talking![/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\r\n\r\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\r\n\r\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\r\n\r\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#eeeeee\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>Frequently Asked Questions</h1>[/et_pb_text][et_pb_toggle admin_label=\"Toggle\" title=\"Can I use the themes on multiple sites?\" open=\"off\"]Yes, you are free to use our themes on as many websites as you like. We do not place any restrictions on how many times you can download or use a theme, nor do we limit the number of domains that you can install our themes to.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"What is your refund policy?\" open=\"on\"]We offer no-questions-asked refunds to all customers within 30 days of your purchase. If you are not satisfied with our product, then simply send us an email and we will refund your purchase right away. Our goal has always been to create a happy, thriving community. If you are not thrilled with the product or are not enjoying the experience, then we have no interest in forcing you to stay an unhappy member.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"What are Photoshop Files?\" open=\"off\"]Elegant Themes offers two different packages: Personal and Developer. The Personal Subscription is ideal for the average user while the Developers License is meant for experienced designers who wish to customize their themes using the original Photoshop files. Photoshop files are the original design files that were used to create the theme. They can be opened using Adobe Photoshop and edited, and prove very useful for customers wishing to change their themeÃ¢â‚¬â„¢s design in some way.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"Can I upgrade after signing up?\" open=\"off\"]Yes, you can upgrade at any time after signing up. When you log in as a Ã¢â‚¬Å“personalÃ¢â‚¬Â subscriber, you will see a notice regarding your current package and instructions on how to upgrade.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"Can I use your themes with WP.com?\" open=\"off\"]Unfortunately WordPress.com does not allow the use of custom themes. If you would like to use a custom theme of any kind, you will need to purchase your own hosting account and install the free software from WordPress.org. If you are looking for great WordPress hosting, we recommend giving HostGator a try.[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Don\'t Be Shy\" button_url=\"#\" button_text=\"Get In Touch\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"dark\" text_orientation=\"center\"]If we didn\'t answer all of your questions, feel free to drop us a line anytime.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Sales Page", "", "publish", "open", "open", "", "sales-page", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/sales-page/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("68", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/d2-300px.png\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#45c4ec\" use_circle=\"off\" circle_color=\"#45c4ec\" use_circle_border=\"off\" circle_border_color=\"#45c4ec\" icon_placement=\"top\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 72px; font-weight: 300;\">Divi Case Study</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Challenge</h2>\r\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.Ã‚Â Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>TheÃ‚Â Solution</h2>\r\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.Ã‚Â Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Complete Corporate Identity\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"We Rethought Everything\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Corporate Rebranding\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" counter_color=\"#2ea3f2\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Website Redesign\" number=\"30\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Day Turnaround\" number=\"60\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Amazing Result\" number=\"1\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"90\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<h1>Mobile Site Boosted Sales By 50%</h1>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Mobile Refresh\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Å’\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Rebuilt From the Inside Out\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Â¸\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Extensive Demographic Studies\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Â©\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/mobile-lockup.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#2e2e2e\"][et_pb_counter percent=\"80\"]Mobile Sales[/et_pb_counter][et_pb_counter percent=\"50\"]Website Traffic[/et_pb_counter][et_pb_counter percent=\"75\"]Conversion Rate[/et_pb_counter][et_pb_counter percent=\"60\"]Email Subscribers[/et_pb_counter][/et_pb_counters][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"The Results Were Amazing\" button_url=\"#\" button_text=\"Live Project\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2e2e2e\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"off\" background_layout=\"dark\" auto=\"off\" title=\"Related Case Studies\" /][/et_pb_section]", "Case Study", "", "publish", "open", "open", "", "case-study", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/case-study/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("69", "1", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "[et_pb_section background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 52px;\">Product Features</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Advanced Page Builder\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"Ã®â‚¬Å½\" icon_color=\"#2ea3f2\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Key Elements\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"Ã®â‚¬Â\" icon_color=\"#2ad4e0\"]The builder comes packed with tons of great modules, and more are on the way! Combine and arrange them in any order. The possibilities are countless.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Target Audience\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#9633e8\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"Ã®Æ’Âµ\"]DiviÃ¢â‚¬â„¢s layout has been designed with mobile devices in mind. No matter how you use it, and no matter how you view it, your website is going to look great.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Strategy\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#d85fd6\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"Ã®Æ’Â¸\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come. Build on top of a powerful foundation.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" module_id=\"builder\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>Advanced Drag & Drop Builder</h1>\r\nThe Divi Builder was made with user experience at the forefront of its priorities. The way it is broken up into sections, rows, columns and widgets, really allows you to understand and edit the structure of your page. Your editing controls are pulled out of the main content area so that you get a clear and concise representation of how your modules fit into your page layout.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\" module_id=\"backgrounds\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"All The Right Things\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec Ã‚Â eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec Ã‚Â eleifend tincidunt nisi.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\" module_id=\"mobile\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\r\n<h1>Fully Responsive Layouts</h1>\r\nWe know that your website needs to be accessible and readable on all devices. We made Divi fully responsive so that your designs look great no matter what. With the builder, you design your desktop website, and we make sure that Divi does the heavy lifting for you.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"left\"]Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. WeÃ¢â‚¬â„¢ve even realeased layout packs along the way for portfolios and business focused websites.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"right\"]Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. WeÃ¢â‚¬â„¢ve even realeased layout packs along the way for portfolios and business focused websites.[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]Join today and get access to Divi, as well as our other countless themes and plugins.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Product Features", "", "publish", "open", "open", "", "product-features", "", "", "2014-11-15 09:25:47", "2014-11-15 09:25:47", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/product-features/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("70", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Welcome To My Website\" button_text=\"Enter\" button_link=\"#\" background_color=\"#27c9b9\" alignment=\"center\" background_layout=\"dark\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][/et_pb_slider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"We Are a Company of Passionate Designers and Developers\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"h\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"Ã®â‚¬Â\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"v\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"g\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Drop Me a Line\" button_url=\"#\" button_text=\"Contact\" background_color=\"#2ea3f2\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Homepage Basic", "", "publish", "open", "open", "", "homepage-basic-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/homepage-basic-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("71", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Welcome to Our Shop\" button_text=\"Shop Now\" background_color=\"#0194f3\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" alignment=\"center\" background_layout=\"dark\" button_link=\"#\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Featured Products</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"featured\" posts_number=\"4\" columns=\"4\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>RecentÃ‚Â Products</h1>[/et_pb_text][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"6\" columns=\"3\" orderby=\"date\" /][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Holiday Special Sale\" button_text=\"Shop Now\" background_color=\"#108bf5\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\"]Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.[/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Become a Vendor\" button_text=\"Learn More\" background_color=\"#27c9b9\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\"]Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.[/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" area=\"sidebar-1\" background_layout=\"light\" /][/et_pb_column][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h1>What Our Customers are Saying</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#27c9b9\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Browse Our Full Shop\" button_url=\"#\" button_text=\"Enter\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"dark\" text_orientation=\"center\"]Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Homepage Shop", "", "publish", "open", "open", "", "homepage-shop-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/homepage-shop-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("72", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2e2e2e\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"on\"][et_pb_slide background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" heading=\"Hello! Welcome To My Online Portfolio\" /][et_pb_slide background_color=\"#f84b48\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][et_pb_slide background_color=\"#23a1f5\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][et_pb_slide background_color=\"#27c8b8\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\" include_categories=\"62,65,72,69,16\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\" /][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬â€¹\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬â€¹\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬â€¹\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Coding Languages\" number=\"7\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Loyal Clients\" number=\"65\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"International Awards\" number=\"12\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Years of Experience\" number=\"10\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#27c8b8\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"View My Full Portfolio\" button_url=\"#\" button_text=\"Enter\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis ac lorema ac tincidunt.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Homepage Portfolio", "", "publish", "open", "open", "", "homepage-portfolio-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/homepage-portfolio-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("73", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Our Company\" button_text=\"Features\" button_link=\"http://elegantthemes.com/preview/Divi2/features/\" background_color=\"#8d1bf4\" alignment=\"center\" background_layout=\"dark\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/05/d2-300px.png\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\"]Quisque eleifend orci sit amet est semper, iaculis tempor mi volutpat. Phasellus consectetur justo sed tristique molestie. Cras lectus quam, vehicula eu dictum a, sollicitudin id velit.[/et_pb_slide][et_pb_slide heading=\"Slide Title\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#f84c48\" alignment=\"center\" background_layout=\"dark\"]Quisque eleifend orci sit amet est semper, iaculis tempor mi volutpat. Phasellus consectetur justo sed tristique molestie. Cras lectus quam, vehicula eu dictum a, sollicitudin id velit.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Cras semper dictum lectus ac bibendum. Sed id massa vel lorem laoreet molestie. Nullam vulputate lacus at mauris molestie porttitor.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Cras semper dictum lectus ac bibendum. Sed id massa vel lorem laoreet molestie. Nullam vulputate lacus at mauris molestie porttitor.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Cras semper dictum lectus ac bibendum. Sed id massa vel lorem laoreet molestie. Nullam vulputate lacus at mauris molestie porttitor.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#4b4b4b\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" title=\"Recent Work\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#eeeeee\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_map admin_label=\"Fullwidth Map\" zoom_level=\"8\" address_lat=\"37.43410184255073\" address_lng=\"-122.04768412931253\"][et_pb_map_pin title=\"Elegant Themes\" pin_address=\"San Francisco, CA, USA\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.41941550000001\" /][et_pb_map_pin title=\"Lorem Ipsum\" pin_address=\"San Jose, CA, USA\" pin_address_lat=\"37.3393857\" pin_address_lng=\"-121.89495549999998\" /][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" title=\"Contact Us\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Homepage Company", "", "publish", "open", "open", "", "homepage-company-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/homepage-company-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("74", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Our Company\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#f7f7f7\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" alignment=\"center\" background_layout=\"light\"]Changing the way you build websites. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Sales & Marketing\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Brand & Identity\" number=\"90\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Web Design\" number=\"80\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"App Development\" number=\"50\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>What We Offer</h2>[/et_pb_text][et_pb_tabs admin_label=\"Tabs\"][et_pb_tab title=\"Overview\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Mission Statement\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Culture\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"50\" /][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#f4f4f4\"][et_pb_counter percent=\"80\"]Brand Consulting[/et_pb_counter][et_pb_counter percent=\"45\"]Marketing Campaigns [/et_pb_counter][et_pb_counter percent=\"95\"]Custom Website Design[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Our Work Flow</h1>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬â€ \" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Â·\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Â¨\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#212a34\" inner_shadow=\"off\" parallax=\"off\" background_image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/05/d2-placeholder-1920.png\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"20\" /][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-300px.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>Frequently Asked Questions</h2>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna. Morbi scelerisque semper congue. Donec vitae congue quam. Pellentesque convallis est a eros porta, ut porttitor magna convallis.\r\n\r\nDonec quis felis imperdiet, vestibulum est ut, pulvinar dolor. Mauris laoreet varius sem, tempus congue nibh elementum facilisis. Aliquam ut odio risus. Mauris consectetur mi et ante aliquam, eget posuere urna semper. Vestibulum vestibulum rhoncus enim, id iaculis eros commodo non.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_accordion admin_label=\"Accordion\"][et_pb_accordion_item title=\"What kind of clients do you work with?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_accordion_item][et_pb_accordion_item title=\"What is your turn around time?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][et_pb_accordion_item title=\"Do you have an affiliate program?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Email\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" title=\"Don\'t Be Shy\"]Drop us a line anytime, and one of our customer service reps will respond to you as soon as possible[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Homepage Corporate", "", "publish", "open", "open", "", "homepage-corporate-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/homepage-corporate-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("75", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Welcome To Our Website\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_width=\"1920\" video_bg_height=\"638\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis ac lorema ac tincidunt. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue.[/et_pb_slide][et_pb_slide heading=\"Sky\'s The Limit\" background_color=\"#444444\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" alignment=\"center\" background_layout=\"dark\" button_text=\"A Closer Look\" button_link=\"#\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"Ã®â‚¬â€¦\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"Ã®â‚¬â€¦\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"Ã®â‚¬â€¦\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"Ã®â‚¬â€¦\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"Ã®â‚¬â€¦\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"Ã®â‚¬â€¦\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#27c9b8\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Get Started\" background_color=\"#7ebec5\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]</p><h1>Building a website has never been so fun.</h1><p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#27323a\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]</p><h1>Lorem Ipsum Dolor.</h1><p>Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit. Nec Ã‚Â eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]</p><h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]</p><h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]</p><h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#22262e\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"2700\" percent_sign=\"off\" counter_color=\"#815ab4\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"30\" percent_sign=\"off\" counter_color=\"#2caaca\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"87\" percent_sign=\"off\" counter_color=\"#35bbaa\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"999\" percent_sign=\"off\" counter_color=\"#ef6462\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" include_categories=\"15\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"on\" /][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Slide Title Here\" button_text=\"Shop Now\" button_link=\"http://elegantthemes.com/preview/Divi2/shop-extended/\" background_color=\"#1a86cf\" alignment=\"center\" background_layout=\"dark\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][et_pb_slide heading=\"Slide Title Here\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam er\r\nos at, laoreet metus.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]</p><h1>Core Features</h1><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-builder.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec Ã‚Â eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"http://elegantthemes.com/preview/Divi2/features/#predefined\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec Ã‚Â eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"http://elegantthemes.com/preview/Divi2/features/#layouts\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec Ã‚Â eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-modules.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" icon_placement=\"top\" use_icon=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#2caaca\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec Ã‚Â eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"http://elegantthemes.com/preview/Divi2/features/#mobile\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec Ã‚Â eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec Ã‚Â eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Slide Title Here\" button_text=\"Our Work\" button_link=\"#\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec Ã‚Â eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec Ã‚Â eleifend tincidunt nisi.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]</p><h1>Versatile Layout Options</h1><p>Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#ec6d5f\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"bottom\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#1fa0e3\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"right\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#47bfa4\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#ec6d5f\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" background_color=\"#7ebec5\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"Join Now\"]</p><h1>Look No Further. Get Started Today</h1><p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Homepage Extended", "", "publish", "open", "open", "", "homepage-extended-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/homepage-extended-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("76", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2ea3f2\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page Title\" subhead=\"Here is a basic page layout with no sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\"]\r\n<h2>Just A Standard Page</h2>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum Dolor</h3>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum Dolor</h3>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Page Fullwidth", "", "publish", "open", "open", "", "page-fullwidth-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/page-fullwidth-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("77", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page Title\" subhead=\"Here is a basic page layout with a right sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\"]\r\n<h2>Just A Standard Page</h2>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum Dolor</h3>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum Dolor</h3>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" area=\"sidebar-1\" background_layout=\"light\" /][/et_pb_column][/et_pb_section]", "Page Right Sidebar", "", "publish", "open", "open", "", "page-right-sidebar-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/page-right-sidebar-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("78", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page With Left Sidebar\" subhead=\"Here is a basic page layout with a left sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"left\" area=\"sidebar-1\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\"]\r\n<h2>Just A Standard Page</h2>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum Dolor</h3>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum Dolor</h3>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h4>Lorem Ipsum Dolor</h4>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]", "Page Left Sidebar", "", "publish", "open", "open", "", "page-left-sidebar-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/page-left-sidebar-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("79", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page With Dual Sidebars\" subhead=\"Here is a basic page layout with dual sidebars\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"left\" area=\"sidebar-1\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\"]\r\n<h2>Just A Standard Page</h2>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum Dolor</h3>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum Dolor</h3>\r\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" area=\"sidebar-1\" background_layout=\"light\" /][/et_pb_column][/et_pb_section]", "Page Dual Sidebars", "", "publish", "open", "open", "", "page-dual-sidebars-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/page-dual-sidebars-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("80", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"My Work\" subhead=\"Your Subtitle Goes Here\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_filterable_portfolio admin_label=\"Filterable Portfolio\" fullwidth=\"off\" posts_number=\"12\" show_title=\"on\" show_categories=\"on\" show_pagination=\"off\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Like What You See?\" button_url=\"#\" button_text=\"Contact Me\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Portfolio Grid", "", "publish", "open", "open", "", "portfolio-grid-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/portfolio-grid-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("81", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"My Work\" subhead=\"Your Subtitle Goes Here\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_portfolio admin_label=\"Portfolio\" fullwidth=\"on\" posts_number=\"4\" show_title=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"I Love Working With Creative Minds\" button_url=\"#\" button_text=\"Contact Me\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]If you are interested in working together, send meÃ‚Â an inquiry and IÃ‚Â will get back to you as soonÃ‚Â as I can![/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Portfolio 1 Column", "", "publish", "open", "open", "", "portfolio-1-column-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/portfolio-1-column-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("82", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\"][et_pb_slide background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"light\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Let\'s Build Something Together\" button_url=\"#\" button_text=\"Contact Me\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Portfolio Fullwidth Carousel", "", "publish", "open", "open", "", "portfolio-fullwidth-carousel-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/portfolio-fullwidth-carousel-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("83", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"off\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested In Working On A Project?\" button_url=\"#\" button_text=\"Contact Me\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Portfolio Fullwidth Grid", "", "publish", "open", "open", "", "portfolio-fullwidth-grid-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/portfolio-fullwidth-grid-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("84", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section background_color=\"#3a3a3a\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#45c4ec\" use_circle=\"off\" circle_color=\"#45c4ec\" use_circle_border=\"off\" circle_border_color=\"#45c4ec\" icon_placement=\"top\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 72px; font-weight: 300;\">Your Project Name</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Challenge</h2>\r\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.Ã‚Â Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>TheÃ‚Â Solution</h2>\r\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.Ã‚Â Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Complete Corporate Identity\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"We Rethought Everything\" background_color=\"#2ea3f2\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Corporate Rebranding\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" counter_color=\"#2ea3f2\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Website Redesign\" number=\"30\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Day Turnaround\" number=\"60\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Amazing Result\" number=\"1\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"90\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<h1>Mobile Site Boosted Sales By 50%</h1>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Mobile Refresh\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Å’\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Rebuilt From the Inside Out\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Â¸\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Extensive Demographic Studies\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Â©\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/mobile-lockup.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#2e2e2e\"][et_pb_counter percent=\"80\"]Mobile Sales[/et_pb_counter][et_pb_counter percent=\"50\"]Website Traffic[/et_pb_counter][et_pb_counter percent=\"75\"]Conversion Rate[/et_pb_counter][et_pb_counter percent=\"60\"]Email Subscribers[/et_pb_counter][/et_pb_counters][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"The Results Were Amazing\" button_url=\"#\" button_text=\"Live Project\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"We Rethought Everything\" background_color=\"#2ea3f2\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"Complete Corporate Identity\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested In Working With Us?\" button_url=\"#\" button_text=\"Get In Touch\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Project Extended", "", "publish", "open", "open", "", "project-extended-3", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/project-extended-3/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("85", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Your Project Name</h1>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h4>Project Description</h4>\r\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue at nisl.Ã‚Â Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h4>ProjectÃ‚Â Details</h4>\r\n<strong>ClientÃ‚Â </strong>Client Name\r\n<strong>DateÃ‚Â </strong>Date of Completion\r\n<strong>SkillsÃ‚Â </strong>Branding, Web Design\r\n<strong>ViewÃ‚Â </strong>elegantthemes.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Project Feature\" button_url=\"#\" button_text=\"Live Project\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"light\" text_orientation=\"left\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nislÃ‚Â quis nibh non, molestie tempus sapien.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"100\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Project Feature\" button_url=\"#\" button_text=\"See More\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"light\" text_orientation=\"right\"]Vivamus ipsum velit, ullamcorper quis nibh, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_cta][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-700px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Like What You See?\" button_url=\"#\" button_text=\"Contact Us\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Project Extended 2", "", "publish", "open", "open", "", "project-extended-2-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/project-extended-2-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("86", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to My Blog\" subhead=\"Here is a masonry blog layout with no sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"off\" posts_number=\"18\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Blog Masonry", "", "publish", "open", "open", "", "blog-masonry-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/blog-masonry-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("87", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to My Blog\" subhead=\"Here is a basic blog layout with a right sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" area=\"sidebar-1\" background_layout=\"light\" /][/et_pb_column][/et_pb_section]", "Blog Standard", "", "publish", "open", "open", "", "blog-standard-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/blog-standard-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("88", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#f84b48\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to Our Shop\" subhead=\"Divi gives you the power to run a full-fledged online storefront.\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"12\" columns=\"4\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"News & Events\" button_url=\"#\" button_text=\"Follow\" use_background_color=\"on\" background_color=\"#57ccc4\" background_layout=\"dark\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Shop Basic", "", "publish", "open", "open", "", "shop-basic-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/shop-basic-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("89", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#b2ede0\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Our Shop\" button_text=\"Shop Now\" button_link=\"#\" background_color=\"#81dfde\" alignment=\"center\" background_layout=\"dark\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\"]Divi gives you the power to easily run a full-fledged online storefront. With the Divi Builder, you can create gorgeous shop pages, such as this one.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"6\" columns=\"3\" orderby=\"menu_order\" /][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Summer Sale!\" button_url=\"#\" button_text=\"Shop Now\" background_color=\"#ed5362\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"]For a limited time only, all of our vintageÃ‚Â products are 50% off! DonÃ¢â‚¬â„¢t miss your chance to save big on these wonderful items.[/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Buy 2 Get 1 Free\" button_url=\"#\" button_text=\"Coupon Code\" background_color=\"#57ccc4\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"]For a limited time only, if you buy two of any item, you get the 3rd for free! Click below to redeem the coupon code to use at checkout.[/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" area=\"sidebar-1\" background_layout=\"light\" /][/et_pb_column][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Our Most Popular Items</h1>[/et_pb_text][et_pb_shop admin_label=\"Shop\" type=\"best_selling\" posts_number=\"4\" columns=\"4\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#57ccc4\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"View All of Our On-Sale Items\" button_url=\"#\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_text=\"Shop Now\"]For a limited time only, all of our vintageÃ‚Â products are 50% off! DonÃ¢â‚¬â„¢t miss your chance to save big on these wonderful items.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Shop Extended", "", "publish", "open", "open", "", "shop-extended-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/shop-extended-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("90", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"150\" /][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/d2-300px.png\" animation=\"bottom\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]<h1></h1>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h4><strong>Lorem Ipsum Dolor</strong></h4>\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h4><strong>Lorem Ipsum Dolor</strong></h4>\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h4><strong>Lorem Ipsum Dolor</strong></h4>\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_text=\"Enter\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"400\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Splash Page", "", "publish", "open", "open", "", "splash-page-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/splash-page-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("91", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-builder.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>We will Be back Soon</h1>\r\nThis is an example of a blank page with no header or footer.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Undergoing Maintenance\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Âµ\" icon_color=\"#63cde3\" use_circle=\"on\" circle_color=\"#f7f7f7\" use_circle_border=\"on\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Feature Updates\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â€šâ€˜\" icon_color=\"#63cde3\" use_circle=\"on\" circle_color=\"#f7f7f7\" use_circle_border=\"on\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Bug Fixes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Â®\" icon_color=\"#63cde3\" use_circle=\"on\" circle_color=\"#f7f7f7\" use_circle_border=\"on\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Contact Us\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Maintenance Mode", "", "publish", "open", "open", "", "maintenance-mode-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/maintenance-mode-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("92", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section inner_shadow=\"off\" parallax=\"off\" background_color=\"#8d1bf4\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\" /][et_pb_countdown_timer admin_label=\"Countdown Timer\" date_time=\"05/31/2014 05:15\" background_layout=\"dark\" background_color=\"#e03e3e\" use_background_color=\"off\" title=\"This Site Is Coming Soon\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Subscribe\" title=\"Sign Up to Receive Updates\" button_text=\"Submit\" background_color=\"#6e15c2\" use_background_color=\"on\" mailchimp_list=\"none\" background_layout=\"dark\" text_orientation=\"left\" provider=\"mailchimp\" aweber_list=\"none\"]Integer accumsan leo non nisi sollicitudin, sit amet eleifend dolor mollis. Donec sagittis posuere commodo. Aenean sed convallis lectus. Vivamus et nisi posuere erat aliquet adipiscing in non libero. Integer ornare dui at molestie dictum. Vivamus id aliquam urna. Duis quis fermentum lacus. Sed viverra dui leo, non auctor nisi porttitor a. Nunc a tristique lectus.[/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Contact Us\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"600\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "publish", "open", "open", "", "coming-soon-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/coming-soon-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("93", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section background_color=\"#27323a\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 72px;\">My Website</h1>\r\n<h2><em>My Tagline</em></h2>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Lorem ipsum dolor sit amet consectetur.\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#313f55\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#27323a\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"right\" /][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Get Started\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Landing Page", "", "publish", "open", "open", "", "landing-page-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/landing-page-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("94", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"My Name\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Subheading[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>This is My Story</h1>\r\nCurabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut id est euismod, rhoncus nunc quis, lobortis turpis. Tam sociis natoque. Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes.[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#dddddd\" bar_bg_color=\"#2ea3f2\"][et_pb_counter percent=\"80\"]Brand Strategy[/et_pb_counter][et_pb_counter percent=\"60\"]Internet Marketing[/et_pb_counter][et_pb_counter percent=\"50\"]App Development[/et_pb_counter][et_pb_counter percent=\"90\"]Customer Happiness[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#108bf5\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"My Recent Work\" background_layout=\"dark\" text_orientation=\"center\" /][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"light\" auto=\"on\" /][/et_pb_section]", "About Me", "", "publish", "open", "open", "", "about-me-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/about-me-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("95", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Our Company\" button_text=\"Learn More\" button_link=\"#\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Our Company Tagline lorem ipsum dolor sit amet.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"A Digital Agency\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Å½\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Forward Thinking\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®ÂÂ°\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Problem Solvers\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Â¸\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Customer Support\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Â¨\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Our Story</h1>\r\nCurabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut id est euismod, rhoncus nunc quis, lobortis turpis. Tam sociis natoque. Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes.[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#dddddd\" bar_bg_color=\"#2ea3f2\"][et_pb_counter percent=\"80\"]Brand Strategy[/et_pb_counter][et_pb_counter percent=\"60\"]Internet Marketing[/et_pb_counter][et_pb_counter percent=\"50\"]App Development[/et_pb_counter][et_pb_counter percent=\"90\"]Customer Happiness[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "publish", "open", "open", "", "about-us-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/about-us-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("96", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_map admin_label=\"Fullwidth Map\" zoom_level=\"9\" address_lat=\"37.77492949999972\" address_lng=\"-122.41941550000001\"][et_pb_map_pin title=\"Headquarters\" pin_address=\"San Francisco, CA, USA\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.41941550000001\" /][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fullwidth=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" title=\"Get In Touch\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h3>More Info</h3>\r\n<p>sit amet, consectetur adipiscing elit. Integer placerat metus id orci facilisis, in luctus eros laoreet. Mauris interdum augue varius, faucibus massa id, imperdiet tortor. Donec vel tortor molestie, hendrerit sem a, hendrerit arcu. Aliquam erat volutpat. Proin varius eros eros, non condimentum nis.</p>\r\n\r\n<strong>Address:</strong> 890 Lorem Ipsum Street #12\r\nSan Francisco, California 65432\r\n\r\n<strong>Phone:</strong> 123.4567.890\r\n\r\n<strong>Business Hours:</strong> 8aÃ¢â‚¬â€œ6:30p M-F, 9aÃ¢â‚¬â€œ2p S-S[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "publish", "open", "open", "", "contact-us-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/contact-us-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("97", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section background_color=\"#6aceb6\" inner_shadow=\"on\" fullwidth=\"on\"]\r\n[et_pb_fullwidth_header title=\"About Our Team\" subhead=\"Your subtitle goes right here.\" background_layout=\"dark\"][/et_pb_fullwidth_header]\r\n[/et_pb_section]\r\n\r\n[et_pb_section]\r\n[et_pb_row]\r\n[et_pb_column type=\"1_3\"]\r\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"left\"][/et_pb_image]\r\n[et_pb_text]\r\n<h2>Nick Roach</h2>\r\n<em>President, CEO, Theme UI/UX Designer</em>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\r\n[/et_pb_text]\r\n[et_pb_counters]\r\n[et_pb_counter percent=\"50\"]Design & UX[/et_pb_counter]\r\n[et_pb_counter percent=\"80\"]Web Programming[/et_pb_counter]\r\n[et_pb_counter percent=\"10\"]Internet Marketing[/et_pb_counter]\r\n[/et_pb_counters]\r\n[/et_pb_column]\r\n\r\n[et_pb_column type=\"1_3\"]\r\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"top\"][/et_pb_image]\r\n[et_pb_text]\r\n<h2>Kenny Sing</h2>\r\n<em>Lead Graphic Designers</em>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\r\n[/et_pb_text]\r\n[et_pb_counters]\r\n[et_pb_counter percent=\"85\"]Photoshop[/et_pb_counter]\r\n[et_pb_counter percent=\"70\"]After Effects[/et_pb_counter]\r\n[et_pb_counter percent=\"50\"]Illustrator[/et_pb_counter]\r\n[/et_pb_counters]\r\n[/et_pb_column]\r\n\r\n[et_pb_column type=\"1_3\"]\r\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"right\"][/et_pb_image]\r\n[et_pb_text]\r\n<h2>Mitch Skolnik</h2>\r\n<em>Community Manager</em>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\r\n[/et_pb_text]\r\n[et_pb_counters]\r\n[et_pb_counter percent=\"80\"]Customer Happiness[/et_pb_counter]\r\n[et_pb_counter percent=\"30\"]Tech Support[/et_pb_counter]\r\n[et_pb_counter percent=\"50\"]Community Management[/et_pb_counter]\r\n[/et_pb_counters]\r\n[/et_pb_column]\r\n[/et_pb_row]\r\n[/et_pb_section]\r\n\r\n[et_pb_section background_color=\"#2d3743\" inner_shadow=\"on\"]\r\n[et_pb_row]\r\n[et_pb_column type=\"1_4\"]\r\n[et_pb_blurb background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_5.png\"  title=\"Timely Support\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\r\n[/et_pb_column]\r\n[et_pb_column type=\"1_4\"]\r\n[et_pb_blurb background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_6.png\"  title=\"Innovative Ideas\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\r\n[/et_pb_column]\r\n[et_pb_column type=\"1_4\"]\r\n[et_pb_blurb background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_7.png\"  title=\"Advanced Technology\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\r\n[/et_pb_column]\r\n[et_pb_column type=\"1_4\"]\r\n[et_pb_blurb background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_8.png\"  title=\"Clear Communication\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\r\n[/et_pb_column]\r\n[/et_pb_row]\r\n[/et_pb_section]\r\n\r\n[et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"]\r\n[et_pb_row]\r\n[et_pb_column type=\"4_4\"]\r\n[et_pb_text text_orientation=\"center\"]<h2>Recent Blog Posts</h2>\r\nLearn from the top thought leaders in the industry.\r\n[/et_pb_text]\r\n[/et_pb_column]\r\n[/et_pb_row]\r\n[et_pb_row]\r\n[et_pb_column type=\"4_4\"]\r\n[et_pb_blog fullwidth=\"off\" show_pagination=\"off\" posts_number=\"3\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\"][/et_pb_blog]\r\n[/et_pb_column]\r\n[/et_pb_row]\r\n[/et_pb_section]\r\n\r\n[et_pb_section]\r\n[et_pb_row]\r\n[et_pb_column type=\"4_4\"]\r\n[et_pb_text text_orientation=\"center\"]<h2>Recent Projects</h2>\r\nLearn from the top thought leaders in the industry.\r\n[/et_pb_text]\r\n[/et_pb_column]\r\n[/et_pb_row]\r\n[et_pb_row]\r\n[et_pb_column type=\"4_4\"]\r\n[et_pb_portfolio categories=\"Portfolio\" fullwidth=\"off\"][/et_pb_portfolio]\r\n[/et_pb_column]\r\n[/et_pb_row]\r\n[/et_pb_section]\r\n\r\n[et_pb_section background_color=\"#7EBEC5\"]\r\n[et_pb_row]\r\n[et_pb_column type=\"4_4\"]\r\n[et_pb_cta title=\"Don\'t Be Shy. Get In Touch.\" button_url=\"#\" button_text=\"Contact Us\" background_layout=\"dark\" background_color=\"none\"]\r\nIf you are interested in working together, send us an inquiry and we will get back to you as soon as we can!\r\n[/et_pb_cta]\r\n[/et_pb_column]\r\n[/et_pb_row]\r\n[/et_pb_section]", "Our Team", "", "publish", "open", "open", "", "our-team-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/our-team-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("98", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"WE ARE A CREATIVE AGENCY\" button_text=\"Our Work\" button_link=\"http://elegantthemes.com/preview/Divi2/fullwidth-grid/\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>OUR LATEST WORK</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_portfolio admin_label=\"Portfolio\" fullwidth=\"off\" posts_number=\"8\" show_title=\"on\" show_categories=\"off\" show_pagination=\"off\" background_layout=\"light\" /][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Portfolio\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1>MEET THE CREW</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Profiles\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>OUR CLIENTS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/05/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/05/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/05/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/05/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/05/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/05/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/05/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/05/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full List\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2ea3f2\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Subscribe\" provider=\"mailchimp\" mailc\r\nhimp_list=\"none\" aweber_list=\"3423452\" button_text=\"Sign Me Up\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Connect With Us\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio. Nulla facilisi. Aenean in mi odio. Etiam adipiscing enim sed condimentum ultrices.[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Creative Agency", "", "publish", "open", "open", "", "creative-agency-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/creative-agency-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("99", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"A Brand New Product\" background_color=\"#efefef\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" alignment=\"center\" background_layout=\"light\" button_text=\"Buy Now\"]The Divi Builder allows you to create beautiful and unique layouts visually, without touching a single line of code.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Gorgeous Design\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Å½\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Drag & Drop Builder\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"1\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Fully Responsive\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬â€¹\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f3f3f3\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>Plans and Pricing</h1>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_pricing_tables admin_label=\"Pricing Table\"][et_pb_pricing_table featured=\"off\" title=\"Basic\" currency=\"$\" per=\"yr\" sum=\"39\" button_url=\"http://elegantthemes.com/\" button_text=\"Sign Up\"]+Access toÃ‚Â <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\r\n+Perpetual Theme Updates\r\n-Premium Technical Support\r\n-Access toÃ‚Â <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\r\n-Layered Photoshop Files\r\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"off\" title=\"Personal\" currency=\"$\" per=\"yr\" sum=\"69\" button_url=\"http://elegantthemes.com/\" button_text=\"Sign Up\"]+Access toÃ‚Â <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\r\n+Perpetual Theme Updates\r\n+Premium Technical Support\r\n-Access toÃ‚Â <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\r\n-Layered Photoshop Files\r\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"on\" title=\"Developer\" subtitle=\"Best Value\" currency=\"$\" per=\"yr\" sum=\"89\" button_url=\"http://elegantthemes.com/\" button_text=\"Sign Up\"]+Access toÃ‚Â <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\r\n+Perpetual Theme Updates\r\n+Premium Technical Support\r\n+Access toÃ‚Â <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\r\n+Layered Photoshop Files\r\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"off\" title=\"Lifetime\" currency=\"$\" sum=\"249\" button_url=\"http://elegantthemes.com/\" button_text=\"Sign Up\"]+Access toÃ‚Â <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\r\n+Perpetual Theme Updates\r\n+Premium Technical Support\r\n+Access toÃ‚Â <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\r\n+Layered Photoshop Files\r\n+No Yearly Fees[/et_pb_pricing_table][/et_pb_pricing_tables][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Customers Are Saying</h1>\r\nDonÃ¢â‚¬â„¢t just take it from us, let our customers do the talking![/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\r\n\r\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\r\n\r\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\r\n\r\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#eeeeee\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>Frequently Asked Questions</h1>[/et_pb_text][et_pb_toggle admin_label=\"Toggle\" title=\"Can I use the themes on multiple sites?\" open=\"off\"]Yes, you are free to use our themes on as many websites as you like. We do not place any restrictions on how many times you can download or use a theme, nor do we limit the number of domains that you can install our themes to.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"What is your refund policy?\" open=\"on\"]We offer no-questions-asked refunds to all customers within 30 days of your purchase. If you are not satisfied with our product, then simply send us an email and we will refund your purchase right away. Our goal has always been to create a happy, thriving community. If you are not thrilled with the product or are not enjoying the experience, then we have no interest in forcing you to stay an unhappy member.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"What are Photoshop Files?\" open=\"off\"]Elegant Themes offers two different packages: Personal and Developer. The Personal Subscription is ideal for the average user while the Developers License is meant for experienced designers who wish to customize their themes using the original Photoshop files. Photoshop files are the original design files that were used to create the theme. They can be opened using Adobe Photoshop and edited, and prove very useful for customers wishing to change their themeÃ¢â‚¬â„¢s design in some way.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"Can I upgrade after signing up?\" open=\"off\"]Yes, you can upgrade at any time after signing up. When you log in as a Ã¢â‚¬Å“personalÃ¢â‚¬Â subscriber, you will see a notice regarding your current package and instructions on how to upgrade.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"Can I use your themes with WP.com?\" open=\"off\"]Unfortunately WordPress.com does not allow the use of custom themes. If you would like to use a custom theme of any kind, you will need to purchase your own hosting account and install the free software from WordPress.org. If you are looking for great WordPress hosting, we recommend giving HostGator a try.[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Don\'t Be Shy\" button_url=\"#\" button_text=\"Get In Touch\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"dark\" text_orientation=\"center\"]If we didn\'t answer all of your questions, feel free to drop us a line anytime.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Sales Page", "", "publish", "open", "open", "", "sales-page-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/sales-page-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("100", "1", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "[et_pb_section background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/d2-300px.png\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#45c4ec\" use_circle=\"off\" circle_color=\"#45c4ec\" use_circle_border=\"off\" circle_border_color=\"#45c4ec\" icon_placement=\"top\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 72px; font-weight: 300;\">Divi Case Study</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Challenge</h2>\r\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.Ã‚Â Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>TheÃ‚Â Solution</h2>\r\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.Ã‚Â Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Complete Corporate Identity\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"We Rethought Everything\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Corporate Rebranding\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" counter_color=\"#2ea3f2\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Website Redesign\" number=\"30\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Day Turnaround\" number=\"60\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Amazing Result\" number=\"1\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"90\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<h1>Mobile Site Boosted Sales By 50%</h1>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Mobile Refresh\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Å’\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Rebuilt From the Inside Out\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Â¸\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Extensive Demographic Studies\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"Ã®â‚¬Â©\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/mobile-lockup.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#2e2e2e\"][et_pb_counter percent=\"80\"]Mobile Sales[/et_pb_counter][et_pb_counter percent=\"50\"]Website Traffic[/et_pb_counter][et_pb_counter percent=\"75\"]Conversion Rate[/et_pb_counter][et_pb_counter percent=\"60\"]Email Subscribers[/et_pb_counter][/et_pb_counters][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"The Results Were Amazing\" button_url=\"#\" button_text=\"Live Project\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2e2e2e\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"off\" background_layout=\"dark\" auto=\"off\" title=\"Related Case Studies\" /][/et_pb_section]", "Case Study", "", "publish", "open", "open", "", "case-study-2", "", "", "2014-11-15 09:26:43", "2014-11-15 09:26:43", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/case-study-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("101", "1", "2014-11-15 09:26:44", "2014-11-15 09:26:44", "[et_pb_section background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 52px;\">Product Features</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Advanced Page Builder\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"Ã®â‚¬Å½\" icon_color=\"#2ea3f2\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Key Elements\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"Ã®â‚¬Â\" icon_color=\"#2ad4e0\"]The builder comes packed with tons of great modules, and more are on the way! Combine and arrange them in any order. The possibilities are countless.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Target Audience\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#9633e8\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"Ã®Æ’Âµ\"]DiviÃ¢â‚¬â„¢s layout has been designed with mobile devices in mind. No matter how you use it, and no matter how you view it, your website is going to look great.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Strategy\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#d85fd6\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"Ã®Æ’Â¸\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come. Build on top of a powerful foundation.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" module_id=\"builder\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>Advanced Drag & Drop Builder</h1>\r\nThe Divi Builder was made with user experience at the forefront of its priorities. The way it is broken up into sections, rows, columns and widgets, really allows you to understand and edit the structure of your page. Your editing controls are pulled out of the main content area so that you get a clear and concise representation of how your modules fit into your page layout.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\" module_id=\"backgrounds\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"All The Right Things\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec Ã‚Â eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec Ã‚Â eleifend tincidunt nisi.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\" module_id=\"mobile\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\r\n<h1>Fully Responsive Layouts</h1>\r\nWe know that your website needs to be accessible and readable on all devices. We made Divi fully responsive so that your designs look great no matter what. With the builder, you design your desktop website, and we make sure that Divi does the heavy lifting for you.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"left\"]Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. WeÃ¢â‚¬â„¢ve even realeased layout packs along the way for portfolios and business focused websites.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"right\"]Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. WeÃ¢â‚¬â„¢ve even realeased layout packs along the way for portfolios and business focused websites.[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]Join today and get access to Divi, as well as our other countless themes and plugins.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Product Features", "", "publish", "open", "open", "", "product-features-2", "", "", "2014-11-15 09:26:44", "2014-11-15 09:26:44", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/product-features-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("104", "1", "2014-11-15 09:36:17", "2014-11-15 09:36:17", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"on\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living. However there is no compromise on the space you need.\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nNo matter how you use Divi, your website is going to look great. Everything about Divi has been built beautifully and purposefully by our passionate team. We are so excited to release this labor of love to our community.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Elegantly Responsive\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://elegantthemes.com\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis.[/et_pb_slide][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\"]\r\n<h2>It\'s Elegantly Responsive</h2>\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\r\n[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\"]\r\n[et_pb_counter percent=\"50\"]Smart[/et_pb_counter]\r\n[et_pb_counter percent=\"80\"]Flexible[/et_pb_counter]\r\n[et_pb_counter percent=\"40\"]Beautiful[/et_pb_counter]\r\n[/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]\r\n<h2>With Our Most Advanced Page Builder Yet.</h2>\r\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 09:36:17", "2014-11-15 09:36:17", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("107", "1", "2014-11-15 09:38:31", "2014-11-15 09:38:31", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"on\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\"]\r\n<h2>It\'s Elegantly Responsive</h2>\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\r\n[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\"]\r\n[et_pb_counter percent=\"50\"]Smart[/et_pb_counter]\r\n[et_pb_counter percent=\"80\"]Flexible[/et_pb_counter]\r\n[et_pb_counter percent=\"40\"]Beautiful[/et_pb_counter]\r\n[/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]\r\n<h2>With Our Most Advanced Page Builder Yet.</h2>\r\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 09:38:31", "2014-11-15 09:38:31", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("106", "1", "2014-11-15 09:37:37", "2014-11-15 09:37:37", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"on\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living. However there is no compromise on the space you need.\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nNo matter how you use Divi, your website is going to look great. Everything about Divi has been built beautifully and purposefully by our passionate team. We are so excited to release this labor of love to our community.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis.\r\n\r\n[/et_pb_slide][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\"]\r\n<h2>It\'s Elegantly Responsive</h2>\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\r\n[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\"]\r\n[et_pb_counter percent=\"50\"]Smart[/et_pb_counter]\r\n[et_pb_counter percent=\"80\"]Flexible[/et_pb_counter]\r\n[et_pb_counter percent=\"40\"]Beautiful[/et_pb_counter]\r\n[/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]\r\n<h2>With Our Most Advanced Page Builder Yet.</h2>\r\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 09:37:37", "2014-11-15 09:37:37", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("108", "1", "2014-11-15 09:49:53", "2014-11-15 09:49:53", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"on\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"WELCOME TO NANDAAVANA PROPERTIES\" text_orientation=\"center\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\"]\r\n<h2>It\'s Elegantly Responsive</h2>\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\r\n[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\"]\r\n[et_pb_counter percent=\"50\"]Smart[/et_pb_counter]\r\n[et_pb_counter percent=\"80\"]Flexible[/et_pb_counter]\r\n[et_pb_counter percent=\"40\"]Beautiful[/et_pb_counter]\r\n[/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]\r\n<h2>With Our Most Advanced Page Builder Yet.</h2>\r\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 09:49:53", "2014-11-15 09:49:53", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("109", "1", "2014-11-15 10:15:57", "2014-11-15 10:15:57", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"on\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\"]\r\n<h2>It\'s Elegantly Responsive</h2>\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\r\n[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\"]\r\n[et_pb_counter percent=\"50\"]Smart[/et_pb_counter]\r\n[et_pb_counter percent=\"80\"]Flexible[/et_pb_counter]\r\n[et_pb_counter percent=\"40\"]Beautiful[/et_pb_counter]\r\n[/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]\r\n<h2>With Our Most Advanced Page Builder Yet.</h2>\r\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 10:15:57", "2014-11-15 10:15:57", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("112", "1", "2014-11-15 10:30:30", "2014-11-15 10:30:30", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h2>It\'s Elegantly Responsive</h2>\r\nThe EXOTIC is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept.[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\"]\r\n[et_pb_counter percent=\"50\"]Smart[/et_pb_counter]\r\n[et_pb_counter percent=\"80\"]Flexible[/et_pb_counter]\r\n[et_pb_counter percent=\"40\"]Beautiful[/et_pb_counter]\r\n[/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]\r\n<h2>With Our Most Advanced Page Builder Yet.</h2>\r\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 10:30:30", "2014-11-15 10:30:30", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("111", "1", "2014-11-15 10:19:04", "2014-11-15 10:19:04", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\"]\r\n<h2>It\'s Elegantly Responsive</h2>\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\r\n[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\"]\r\n[et_pb_counter percent=\"50\"]Smart[/et_pb_counter]\r\n[et_pb_counter percent=\"80\"]Flexible[/et_pb_counter]\r\n[et_pb_counter percent=\"40\"]Beautiful[/et_pb_counter]\r\n[/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]\r\n<h2>With Our Most Advanced Page Builder Yet.</h2>\r\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 10:19:04", "2014-11-15 10:19:04", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("110", "1", "2014-11-15 10:18:11", "2014-11-15 10:18:11", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"on\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\ndhd\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\"]\r\n<h2>It\'s Elegantly Responsive</h2>\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\r\n[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\"]\r\n[et_pb_counter percent=\"50\"]Smart[/et_pb_counter]\r\n[et_pb_counter percent=\"80\"]Flexible[/et_pb_counter]\r\n[et_pb_counter percent=\"40\"]Beautiful[/et_pb_counter]\r\n[/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]\r\n<h2>With Our Most Advanced Page Builder Yet.</h2>\r\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 10:18:11", "2014-11-15 10:18:11", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("113", "1", "2014-11-15 10:35:18", "2014-11-15 10:35:18", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>COME HOME TO THE BREEZE</h2>\r\nThe EXOTIC is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept.[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\" background_layout=\"light\" background_color=\"#dddddd\" bar_bg_color=\"#7EBEC5\"]\r\n[et_pb_counter percent=\"50\"]Smart[/et_pb_counter]\r\n[et_pb_counter percent=\"80\"]Flexible[/et_pb_counter]\r\n[et_pb_counter percent=\"40\"]Beautiful[/et_pb_counter]\r\n[/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]\r\n<h2>With Our Most Advanced Page Builder Yet.</h2>\r\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 10:35:18", "2014-11-15 10:35:18", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("114", "1", "2014-11-15 10:38:22", "2014-11-15 10:38:22", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>COME HOME TO THE BREEZE</h2>\r\nThe EXOTIC is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\" background_layout=\"light\" background_color=\"#dddddd\" bar_bg_color=\"#7EBEC5\"][et_pb_counter percent=\"95\"]Accessibility[/et_pb_counter][et_pb_counter percent=\"80\"]Flexible[/et_pb_counter][et_pb_counter percent=\"40\"]Beautiful[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]\r\n<h2>With Our Most Advanced Page Builder Yet.</h2>\r\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 10:38:22", "2014-11-15 10:38:22", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("115", "1", "2014-11-15 10:40:51", "2014-11-15 10:40:51", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>COME HOME TO THE BREEZE</h2>\r\nThe EXOTIC is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\" background_layout=\"light\" background_color=\"#03a55f\" bar_bg_color=\"#7EBEC5\"][et_pb_counter percent=\"95\"]Accessibility[/et_pb_counter][et_pb_counter percent=\"92\"]Well Defined Entrance Arch[/et_pb_counter][et_pb_counter percent=\"90\"]Children Play Area[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]\r\n<h2>With Our Most Advanced Page Builder Yet.</h2>\r\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 10:40:51", "2014-11-15 10:40:51", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("116", "1", "2014-11-15 10:41:40", "2014-11-15 10:41:40", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>COME HOME TO THE BREEZE</h2>\r\nThe EXOTIC is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\" background_layout=\"light\" background_color=\"#ddd9d9\" bar_bg_color=\"#03a55f\"][et_pb_counter percent=\"95\"]Accessibility[/et_pb_counter][et_pb_counter percent=\"92\"]Well Defined Entrance Arch[/et_pb_counter][et_pb_counter percent=\"90\"]Children Play Area[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]\r\n<h2>With Our Most Advanced Page Builder Yet.</h2>\r\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 10:41:40", "2014-11-15 10:41:40", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("117", "1", "2014-11-15 10:42:06", "2014-11-15 10:42:06", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>COME HOME TO THE BREEZE</h2>\r\nThe EXOTIC is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\" background_layout=\"dark\" background_color=\"#ddd9d9\" bar_bg_color=\"#03a55f\"][et_pb_counter percent=\"95\"]Accessibility[/et_pb_counter][et_pb_counter percent=\"92\"]Well Defined Entrance Arch[/et_pb_counter][et_pb_counter percent=\"90\"]Children Play Area[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]\r\n<h2>With Our Most Advanced Page Builder Yet.</h2>\r\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 10:42:06", "2014-11-15 10:42:06", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("147", "1", "2014-11-15 12:01:02", "2014-11-15 12:01:02", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:01:02", "2014-11-15 12:01:02", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("118", "1", "2014-11-15 10:44:17", "2014-11-15 10:44:17", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>COME HOME TO THE BREEZE</h2>\r\nThe EXOTIC is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]SPECIFICATIONS[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\" background_layout=\"dark\" background_color=\"#ddd9d9\" bar_bg_color=\"#03a55f\"][et_pb_counter percent=\"95\"]Accessibility[/et_pb_counter][et_pb_counter percent=\"92\"]Well Defined Entrance Arch[/et_pb_counter][et_pb_counter percent=\"90\"]Children Play Area[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]\r\n<h2>With Our Most Advanced Page Builder Yet.</h2>\r\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 10:44:17", "2014-11-15 10:44:17", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("119", "1", "2014-11-15 10:45:11", "2014-11-15 10:45:11", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>COME HOME TO THE BREEZE</h2>\r\nThe EXOTIC is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>SPECIFICATIONS</h2>[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\" background_layout=\"dark\" background_color=\"#ddd9d9\" bar_bg_color=\"#03a55f\"][et_pb_counter percent=\"95\"]Accessibility[/et_pb_counter][et_pb_counter percent=\"92\"]Well Defined Entrance Arch[/et_pb_counter][et_pb_counter percent=\"90\"]Children Play Area[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]\r\n<h2>With Our Most Advanced Page Builder Yet.</h2>\r\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 10:45:11", "2014-11-15 10:45:11", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("120", "1", "2014-11-15 10:46:33", "2014-11-15 10:46:33", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>COME HOME TO THE BREEZE</h2>\r\nThe EXOTIC is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>SPECIFICATIONS</h2>[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\" background_layout=\"light\" background_color=\"#efecea\" bar_bg_color=\"#03a55f\"][et_pb_counter percent=\"95\"]Accessibility[/et_pb_counter][et_pb_counter percent=\"92\"]Well Defined Entrance Arch[/et_pb_counter][et_pb_counter percent=\"90\"]Children Play Area[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]\r\n<h2>With Our Most Advanced Page Builder Yet.</h2>\r\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 10:46:33", "2014-11-15 10:46:33", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("144", "1", "2014-11-15 11:52:29", "2014-11-15 11:52:29", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2.jpg\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 11:52:29", "2014-11-15 11:52:29", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("121", "1", "2014-11-15 10:47:00", "2014-11-15 10:47:00", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>COME HOME TO THE BREEZE</h2>\r\nThe EXOTIC is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>SPECIFICATIONS</h2>[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\" background_layout=\"light\" background_color=\"#efecea\" bar_bg_color=\"#03a55f\"][et_pb_counter percent=\"95\"]Accessibility[/et_pb_counter][et_pb_counter percent=\"92\"]Well Defined Entrance Arch[/et_pb_counter][et_pb_counter percent=\"90\"]Children Play Area[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]\r\n<h2>With Our Most Advanced Page Builder Yet.</h2>\r\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 10:47:00", "2014-11-15 10:47:00", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("122", "1", "2014-11-15 10:52:04", "2014-11-15 10:52:04", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>COME HOME TO THE BREEZE</h2>\r\nThe EXOTIC is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>SPECIFICATIONS</h2>[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\" background_layout=\"light\" background_color=\"#858784\" bar_bg_color=\"#03a55f\"][et_pb_counter percent=\"95\"]Accessibility[/et_pb_counter][et_pb_counter percent=\"92\"]Well Defined Entrance Arch[/et_pb_counter][et_pb_counter percent=\"90\"]Children Play Area[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h2>With Our Most Advanced Page Builder Yet.</h2>\r\nWe make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 10:52:04", "2014-11-15 10:52:04", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("123", "1", "2014-11-15 10:52:40", "2014-11-15 10:52:40", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>COME HOME TO THE BREEZE</h2>\r\nThe EXOTIC is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>SPECIFICATIONS</h2>[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\" background_layout=\"light\" background_color=\"#858784\" bar_bg_color=\"#03a55f\"][et_pb_counter percent=\"95\"]Accessibility[/et_pb_counter][et_pb_counter percent=\"92\"]Well Defined Entrance Arch[/et_pb_counter][et_pb_counter percent=\"90\"]Children Play Area[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h2>\r\nWe make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 10:52:40", "2014-11-15 10:52:40", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("124", "1", "2014-11-15 10:53:46", "2014-11-15 10:53:46", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>COME HOME TO THE BREEZE</h2>\r\nThe EXOTIC is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>SPECIFICATIONS</h2>[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\" background_layout=\"light\" background_color=\"#858784\" bar_bg_color=\"#03a55f\"][et_pb_counter percent=\"95\"]Accessibility[/et_pb_counter][et_pb_counter percent=\"92\"]Well Defined Entrance Arch[/et_pb_counter][et_pb_counter percent=\"90\"]Children Play Area[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h2>\r\n<span style=\"line-height:20px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 10:53:46", "2014-11-15 10:53:46", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("125", "1", "2014-11-15 10:55:28", "2014-11-15 10:55:28", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>COME HOME TO THE BREEZE</h2>\r\nThe EXOTIC is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>SPECIFICATIONS</h2>[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\" background_layout=\"light\" background_color=\"#858784\" bar_bg_color=\"#03a55f\"][et_pb_counter percent=\"95\"]Accessibility[/et_pb_counter][et_pb_counter percent=\"92\"]Well Defined Entrance Arch[/et_pb_counter][et_pb_counter percent=\"90\"]Children Play Area[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h2><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 10:55:28", "2014-11-15 10:55:28", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("126", "1", "2014-11-15 10:57:04", "2014-11-15 10:57:04", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>COME HOME TO THE BREEZE</h2>\r\nThe EXOTIC is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>SPECIFICATIONS</h2>[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\" background_layout=\"light\" background_color=\"#858784\" bar_bg_color=\"#03a55f\"][et_pb_counter percent=\"95\"]Accessibility[/et_pb_counter][et_pb_counter percent=\"92\"]Well Defined Entrance Arch[/et_pb_counter][et_pb_counter percent=\"90\"]Children Play Area[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>\r\n<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 10:57:04", "2014-11-15 10:57:04", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("127", "1", "2014-11-15 10:57:29", "2014-11-15 10:57:29", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>COME HOME TO THE BREEZE</h2>\r\nThe EXOTIC is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>SPECIFICATIONS</h2>[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\" background_layout=\"light\" background_color=\"#858784\" bar_bg_color=\"#03a55f\"][et_pb_counter percent=\"95\"]Accessibility[/et_pb_counter][et_pb_counter percent=\"92\"]Well Defined Entrance Arch[/et_pb_counter][et_pb_counter percent=\"90\"]Children Play Area[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>\r\n<hr/>\r\n<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 10:57:29", "2014-11-15 10:57:29", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("129", "1", "2014-11-15 10:59:26", "2014-11-15 10:59:26", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>COME HOME TO THE BREEZE</h2>\r\nThe EXOTIC is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>SPECIFICATIONS</h2>[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\" background_layout=\"light\" background_color=\"#858784\" bar_bg_color=\"#03a55f\"][et_pb_counter percent=\"95\"]Accessibility[/et_pb_counter][et_pb_counter percent=\"92\"]Well Defined Entrance Arch[/et_pb_counter][et_pb_counter percent=\"90\"]Children Play Area[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 10:59:26", "2014-11-15 10:59:26", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("128", "1", "2014-11-15 10:58:54", "2014-11-15 10:58:54", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>COME HOME TO THE BREEZE</h2>\r\nThe EXOTIC is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>SPECIFICATIONS</h2>[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\" background_layout=\"light\" background_color=\"#858784\" bar_bg_color=\"#03a55f\"][et_pb_counter percent=\"95\"]Accessibility[/et_pb_counter][et_pb_counter percent=\"92\"]Well Defined Entrance Arch[/et_pb_counter][et_pb_counter percent=\"90\"]Children Play Area[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"on\" height=\"120\" /][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 10:58:54", "2014-11-15 10:58:54", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("130", "1", "2014-11-15 11:03:00", "2014-11-15 11:03:00", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>COME HOME TO THE BREEZE</h2>\r\nThe EXOTIC is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>SPECIFICATIONS</h2>[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\" background_layout=\"light\" background_color=\"#858784\" bar_bg_color=\"#03a55f\"][et_pb_counter percent=\"95\"]Accessibility[/et_pb_counter][et_pb_counter percent=\"92\"]Well Defined Entrance Arch[/et_pb_counter][et_pb_counter percent=\"90\"]Children Play Area[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 11:03:00", "2014-11-15 11:03:00", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("132", "1", "2014-11-15 11:17:21", "2014-11-15 11:17:21", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>COME HOME TO THE BREEZE</h2>\r\nThe EXOTIC is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>SPECIFICATIONS</h2>[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\" background_layout=\"light\" background_color=\"#858784\" bar_bg_color=\"#03a55f\"][et_pb_counter percent=\"95\"]Accessibility[/et_pb_counter][et_pb_counter percent=\"92\"]Well Defined Entrance Arch[/et_pb_counter][et_pb_counter percent=\"90\"]Children Play Area[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 11:17:21", "2014-11-15 11:17:21", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("133", "1", "2014-11-15 11:18:01", "2014-11-15 11:18:01", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"2_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>COME HOME TO THE BREEZE</h2>\r\nThe EXOTIC is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>SPECIFICATIONS</h2>[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\" background_layout=\"light\" background_color=\"#858784\" bar_bg_color=\"#03a55f\"][et_pb_counter percent=\"95\"]Accessibility[/et_pb_counter][et_pb_counter percent=\"92\"]Well Defined Entrance Arch[/et_pb_counter][et_pb_counter percent=\"90\"]Children Play Area[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 11:18:01", "2014-11-15 11:18:01", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("136", "1", "2014-11-15 11:24:14", "2014-11-15 11:24:14", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>COME HOME TO THE BREEZE</h2>\r\n<p style=\"text-align:justify;\"><span style=\"color:#FFFFFF; font-size:18px; line-height:12px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 11:24:14", "2014-11-15 11:24:14", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("134", "1", "2014-11-15 11:18:31", "2014-11-15 11:18:31", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>COME HOME TO THE BREEZE</h2>\r\nThe EXOTIC is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>SPECIFICATIONS</h2>[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\" background_layout=\"light\" background_color=\"#858784\" bar_bg_color=\"#03a55f\"][et_pb_counter percent=\"95\"]Accessibility[/et_pb_counter][et_pb_counter percent=\"92\"]Well Defined Entrance Arch[/et_pb_counter][et_pb_counter percent=\"90\"]Children Play Area[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 11:18:31", "2014-11-15 11:18:31", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("135", "1", "2014-11-15 11:21:07", "2014-11-15 11:21:07", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\n\nHowever there is no compromise on the space you need.\n\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>COME HOME TO THE BREEZE</h2>\nThe EXOTIC is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>SPECIFICATIONS</h2>[/et_pb_text][et_pb_counters admin_label=\"Animated Counters\" background_layout=\"light\" background_color=\"#858784\" bar_bg_color=\"#03a55f\"][et_pb_counter percent=\"95\"]Accessibility[/et_pb_counter][et_pb_counter percent=\"92\"]Well Defined Entrance Arch[/et_pb_counter][et_pb_counter percent=\"90\"]Children Play Area[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\nJoin today and get access to Divi, as well as our other countless themes and plugins.\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Nandavana Home1", "", "publish", "open", "open", "", "nandavana-home1", "", "", "2014-11-15 11:21:07", "2014-11-15 11:21:07", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/nandavana-home1/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("139", "1", "2014-11-15 11:28:23", "2014-11-15 11:28:23", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#FFFFFF;line-height:25px;\">COME HOME TO THE BREEZE</span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 11:28:23", "2014-11-15 11:28:23", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("137", "1", "2014-11-15 11:26:09", "2014-11-15 11:26:09", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>COME HOME TO THE BREEZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#000000; font-size:18px; line-height:12px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 11:26:09", "2014-11-15 11:26:09", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("138", "1", "2014-11-15 11:27:07", "2014-11-15 11:27:07", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>COME HOME TO THE BREEZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#004f98; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 11:27:07", "2014-11-15 11:27:07", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("142", "1", "2014-11-15 11:46:39", "2014-11-15 11:46:39", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 11:46:39", "2014-11-15 11:46:39", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("140", "1", "2014-11-15 11:29:27", "2014-11-15 11:29:27", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide heading=\"Epitomises simple living\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://nandaavanaproperties.com/\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\nHowever there is no compromise on the space you need.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Nandaavana Properties is a reputed enterprise focused on developing luxurious gated communities with the best of amenities.\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://nandaavanaproperties.com/\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider.png\" image_alt=\"Alt text for the image\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 11:29:27", "2014-11-15 11:29:27", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("146", "1", "2014-11-15 11:56:17", "2014-11-15 11:56:17", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 11:56:17", "2014-11-15 11:56:17", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("148", "1", "2014-11-15 12:02:31", "2014-11-15 12:02:31", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:02:31", "2014-11-15 12:02:31", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("149", "1", "2014-11-15 12:03:14", "2014-11-15 12:03:14", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:03:14", "2014-11-15 12:03:14", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("150", "1", "2014-11-15 12:04:13", "2014-11-15 12:04:13", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:04:13", "2014-11-15 12:04:13", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("151", "1", "2014-11-15 12:04:59", "2014-11-15 12:04:59", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]bjbh[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:04:59", "2014-11-15 12:04:59", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("153", "1", "2014-11-15 12:08:57", "2014-11-15 12:08:57", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:45px; line-height:12px;\">LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES IN HOSUR </span></p>\r\n<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">JUST CLICK !!! BOOK !!! START LIVING !!! </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:08:57", "2014-11-15 12:08:57", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("152", "1", "2014-11-15 12:07:52", "2014-11-15 12:07:52", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" background_layout=\"light\" title=\"LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES \" text_orientation=\"center\" subhead=\"JUST CLICK !!! BOOK !!! START LIVING !!!\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\"><strong>LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES IN HOSUR </strong></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:07:52", "2014-11-15 12:07:52", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("154", "1", "2014-11-15 12:09:24", "2014-11-15 12:09:24", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES IN HOSUR </span></p>\r\n<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\">JUST CLICK !!! BOOK !!! START LIVING !!! </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:09:24", "2014-11-15 12:09:24", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("155", "1", "2014-11-15 12:09:54", "2014-11-15 12:09:54", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LOOKING FOR OUR READY - TO - MOVE - IN PROPERTIES IN HOSUR </span></p>\r\n<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\">JUST CLICK !!! BOOK !!! START LIVING !!! </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:09:54", "2014-11-15 12:09:54", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("156", "1", "2014-11-15 12:10:36", "2014-11-15 12:10:36", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LOOKING FOR OUR READY-TO-MOVE-IN PROPERTIES IN HOSUR </span></p>\r\n<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\">JUST CLICK !!! BOOK !!! START LIVING !!! </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:10:36", "2014-11-15 12:10:36", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("157", "1", "2014-11-15 12:11:06", "2014-11-15 12:11:06", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LOOKING FOR OUR READY-TO-MOVE-IN PROPERTIES IN HOSUR </span></p>\r\n<br/>\r\n<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\">JUST CLICK !!! BOOK !!! START LIVING !!! </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:11:06", "2014-11-15 12:11:06", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("158", "1", "2014-11-15 12:11:50", "2014-11-15 12:11:50", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LOOKING FOR OUR READY-TO-MOVE-IN PROPERTIES IN HOSUR </span></p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\">JUST CLICK !!! BOOK !!! START LIVING !!! </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:11:50", "2014-11-15 12:11:50", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("159", "1", "2014-11-15 12:14:31", "2014-11-15 12:14:31", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC</strong></span></p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\">JUST CLICK !!! BOOK & START LIVING !!! </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:14:31", "2014-11-15 12:14:31", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("160", "1", "2014-11-15 12:16:56", "2014-11-15 12:16:56", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\">JUST CLICK !!! BOOK & START LIVING !!! </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:16:56", "2014-11-15 12:16:56", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("161", "1", "2014-11-15 12:18:35", "2014-11-15 12:18:35", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p>\r\nGET OUR AMAZING FACILITIES[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\">JUST CLICK !!! BOOK & START LIVING !!! </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:18:35", "2014-11-15 12:18:35", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("163", "1", "2014-11-15 12:19:35", "2014-11-15 12:19:35", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p>\r\nGET OUR AMAZING FACILITIES[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\">JUST CLICK !!! BOOK & START LIVING !!! </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:19:35", "2014-11-15 12:19:35", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("165", "1", "2014-11-15 12:21:28", "2014-11-15 12:21:28", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p>\r\nGET OUR AMAZING FACILITIES[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\">JUST CLICK !!! BOOK & START LIVING !!! </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:21:28", "2014-11-15 12:21:28", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("166", "1", "2014-11-15 12:23:22", "2014-11-15 12:23:22", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC & ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\">JUST CLICK !!! BOOK & START LIVING !!! </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:23:22", "2014-11-15 12:23:22", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("169", "1", "2014-11-15 12:25:30", "2014-11-15 12:25:30", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p>\r\nGET OUR AMAZING FACILITIES[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\">JUST CLICK !!! BOOK & START LIVING !!! </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:25:30", "2014-11-15 12:25:30", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("167", "1", "2014-11-15 12:24:31", "2014-11-15 12:24:31", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bfbfbf\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\">JUST CLICK !!! BOOK & START LIVING !!! </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:24:31", "2014-11-15 12:24:31", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("172", "1", "2014-11-15 12:26:27", "2014-11-15 12:26:27", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"700\" parallax_method=\"off\"][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p>\r\nGET OUR AMAZING FACILITIES[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\">JUST CLICK !!! BOOK & START LIVING !!! </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:26:27", "2014-11-15 12:26:27", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("170", "1", "2014-11-15 12:25:33", "2014-11-15 12:25:33", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:25:33", "2014-11-15 12:25:33", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("171", "1", "2014-11-15 12:26:15", "2014-11-15 12:26:15", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:26:15", "2014-11-15 12:26:15", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("173", "1", "2014-11-15 12:27:15", "2014-11-15 12:27:15", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"6000\" parallax_method=\"off\"][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p>\r\nGET OUR AMAZING FACILITIES[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\">JUST CLICK !!! BOOK & START LIVING !!! </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:27:15", "2014-11-15 12:27:15", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("175", "1", "2014-11-15 12:27:42", "2014-11-15 12:27:42", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:27:42", "2014-11-15 12:27:42", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("174", "1", "2014-11-15 12:27:21", "2014-11-15 12:27:21", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:27:21", "2014-11-15 12:27:21", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("176", "1", "2014-11-15 12:28:02", "2014-11-15 12:28:02", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"on\" auto=\"on\" auto_speed=\"6000\" parallax_method=\"off\"][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p>\r\nGET OUR AMAZING FACILITIES[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\">JUST CLICK !!! BOOK & START LIVING !!! </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:28:02", "2014-11-15 12:28:02", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("178", "1", "2014-11-15 12:29:03", "2014-11-15 12:29:03", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"on\" auto=\"on\" auto_speed=\"10000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p>\r\nGET OUR AMAZING FACILITIES[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\">JUST CLICK !!! BOOK & START LIVING !!! </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#eee\" show_divider=\"off\" height=\"120\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:45px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\"><span style=\"color:#02407a; font-size:18px; line-height:25px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:29:03", "2014-11-15 12:29:03", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("177", "1", "2014-11-15 12:28:15", "2014-11-15 12:28:15", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:28:15", "2014-11-15 12:28:15", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("179", "1", "2014-11-15 12:29:08", "2014-11-15 12:29:08", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2a.jpg\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:29:08", "2014-11-15 12:29:08", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("182", "1", "2014-11-15 12:31:54", "2014-11-15 12:31:54", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#6aceb6\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides1.jpg\" background_color=\"#bcc40c\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:31:54", "2014-11-15 12:31:54", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("183", "1", "2014-11-15 12:33:28", "2014-11-15 12:33:28", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:33:28", "2014-11-15 12:33:28", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("184", "1", "2014-11-15 12:35:37", "2014-11-15 12:35:37", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:35:37", "2014-11-15 12:35:37", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("185", "1", "2014-11-15 12:37:25", "2014-11-15 12:37:25", " ", "", "", "publish", "open", "open", "", "185", "", "", "2016-03-18 10:43:15", "2016-03-18 10:43:15", "", "0", "http://hrd.softons.cu.cc/?p=185", "1", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("189", "1", "2014-11-15 12:37:07", "2014-11-15 12:37:07", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction. After all, being affordable doesnÃ¢â‚¬â„¢t mean being cheap.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:37:07", "2014-11-15 12:37:07", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("481", "1", "2014-12-04 07:36:59", "2014-12-04 07:36:59", " ", "", "", "publish", "open", "open", "", "481", "", "", "2016-03-18 10:43:15", "2016-03-18 10:43:15", "", "0", "http://hrd.softons.cu.cc/?p=481", "9", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("193", "1", "2014-11-15 12:38:10", "2014-11-15 12:38:10", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction. After all, being affordable doesnÃ¢â‚¬â„¢t mean being cheap.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:38:10", "2014-11-15 12:38:10", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("194", "1", "2014-11-15 12:39:30", "2014-11-15 12:39:30", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:39:30", "2014-11-15 12:39:30", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("195", "1", "2014-11-15 12:40:03", "2014-11-15 12:40:03", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:40:03", "2014-11-15 12:40:03", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("200", "1", "2014-11-15 12:47:39", "2014-11-15 12:47:39", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" /][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:47:39", "2014-11-15 12:47:39", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("199", "1", "2014-11-15 12:45:13", "2014-11-15 12:45:13", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:45:13", "2014-11-15 12:45:13", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("196", "1", "2014-11-15 12:40:33", "2014-11-15 12:40:33", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:40:33", "2014-11-15 12:40:33", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("197", "1", "2014-11-15 12:41:46", "2014-11-15 12:41:46", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:41:46", "2014-11-15 12:41:46", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("198", "1", "2014-11-15 12:43:22", "2014-11-15 12:43:22", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:43:22", "2014-11-15 12:43:22", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("205", "1", "2014-11-15 12:53:43", "2014-11-15 12:53:43", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" /][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:53:43", "2014-11-15 12:53:43", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("206", "1", "2014-11-15 12:54:36", "2014-11-15 12:54:36", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Nandavanaa.mp4\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:54:36", "2014-11-15 12:54:36", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("207", "1", "2014-11-15 12:55:02", "2014-11-15 12:55:02", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#d3d3d3\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Nandavanaa.mp4\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:55:02", "2014-11-15 12:55:02", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("208", "1", "2014-11-15 12:55:31", "2014-11-15 12:55:31", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Nandavanaa.mp4\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:55:31", "2014-11-15 12:55:31", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("209", "1", "2014-11-15 12:56:07", "2014-11-15 12:56:07", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Nandavanaa.mp4\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:56:07", "2014-11-15 12:56:07", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("210", "1", "2014-11-15 12:56:54", "2014-11-15 12:56:54", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Nandavanaa.mp4\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:56:54", "2014-11-15 12:56:54", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("212", "1", "2014-11-15 12:57:50", "2014-11-15 12:57:50", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" animation=\"top\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Nandavanaa.mp4\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:57:50", "2014-11-15 12:57:50", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("213", "1", "2014-11-15 12:58:42", "2014-11-15 12:58:42", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" animation=\"left\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Nandavanaa.mp4\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:58:42", "2014-11-15 12:58:42", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("214", "1", "2014-11-15 12:59:38", "2014-11-15 12:59:38", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" animation=\"left\" show_in_lightbox=\"off\" url_new_window=\"off\" sticky=\"on\" title_text=\"THE EXOTIC\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Nandavanaa.mp4\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 12:59:38", "2014-11-15 12:59:38", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("215", "1", "2014-11-15 13:00:40", "2014-11-15 13:00:40", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Nandavanaa.mp4\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 13:00:40", "2014-11-15 13:00:40", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("216", "1", "2014-11-15 13:08:58", "2014-11-15 13:08:58", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Nandavanaa.mp4\" video_bg_height=\"400\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 13:08:58", "2014-11-15 13:08:58", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("217", "1", "2014-11-15 13:09:30", "2014-11-15 13:09:30", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Nandavanaa.mp4\" video_bg_height=\"600\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 13:09:30", "2014-11-15 13:09:30", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("220", "1", "2014-11-15 13:13:13", "2014-11-15 13:13:13", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Nandavanaa.mp4\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 13:13:13", "2014-11-15 13:13:13", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("218", "1", "2014-11-15 13:11:34", "2014-11-15 13:11:34", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Nandavanaa.mp4\" video_bg_height=\"600\" video_bg_width=\"100%\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 13:11:34", "2014-11-15 13:11:34", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("219", "1", "2014-11-15 13:12:29", "2014-11-15 13:12:29", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Nandavanaa.mp4\" video_bg_height=\"700\" video_bg_width=\"1024\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 13:12:29", "2014-11-15 13:12:29", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("223", "1", "2014-11-15 13:21:11", "2014-11-15 13:21:11", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/drop.mp4\" video_bg_webm=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/drop.webm\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-15 13:21:11", "2014-11-15 13:21:11", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("243", "1", "2014-11-17 04:29:12", "2014-11-17 04:29:12", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Nandavanaa.mp4\" /][/et_pb_slider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 04:29:12", "2014-11-17 04:29:12", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("224", "1", "2014-11-17 03:42:55", "2014-11-17 03:42:55", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/drop.mp4\" video_bg_webm=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/drop.webm\" video_bg_height=\"604\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 03:42:55", "2014-11-17 03:42:55", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("228", "1", "2014-11-17 03:57:58", "2014-11-17 03:57:58", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Nandavanaa.mp4\" video_bg_height=\"624\" video_bg_width=\"1402\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 03:57:58", "2014-11-17 03:57:58", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("225", "1", "2014-11-17 03:44:19", "2014-11-17 03:44:19", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/drop.mp4\" video_bg_webm=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/drop.webm\" video_bg_height=\"604\" video_bg_width=\"1402\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 03:44:19", "2014-11-17 03:44:19", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("226", "1", "2014-11-17 03:45:45", "2014-11-17 03:45:45", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/drop.mp4\" video_bg_webm=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/drop.webm\" video_bg_height=\"800\" video_bg_width=\"1402\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 03:45:45", "2014-11-17 03:45:45", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("227", "1", "2014-11-17 03:49:03", "2014-11-17 03:49:03", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/drop.mp4\" video_bg_webm=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/drop.webm\" video_bg_height=\"624\" video_bg_width=\"1402\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 03:49:03", "2014-11-17 03:49:03", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("229", "1", "2014-11-17 03:58:36", "2014-11-17 03:58:36", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Nandavanaa.mp4\" video_bg_height=\"800\" video_bg_width=\"1402\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 03:58:36", "2014-11-17 03:58:36", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("230", "1", "2014-11-17 03:59:18", "2014-11-17 03:59:18", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Nandavanaa.mp4\" video_bg_height=\"610\" video_bg_width=\"1402\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 03:59:18", "2014-11-17 03:59:18", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("231", "1", "2014-11-17 04:01:01", "2014-11-17 04:01:01", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Nandavanaa.mp4\" video_bg_height=\"610\" video_bg_width=\"1600\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 04:01:01", "2014-11-17 04:01:01", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("232", "1", "2014-11-17 04:02:18", "2014-11-17 04:02:18", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Nandavanaa.mp4\" video_bg_height=\"635\" video_bg_width=\"1663\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 04:02:18", "2014-11-17 04:02:18", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("233", "1", "2014-11-17 04:12:08", "2014-11-17 04:12:08", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Nandavanaa.mp4\" video_bg_height=\"700\" video_bg_width=\"1663\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 04:12:08", "2014-11-17 04:12:08", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("679", "1", "2015-03-20 06:38:41", "2015-03-20 06:38:41", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to your OFFICE[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Centralized water system for round the clock[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 06:38:41", "2015-03-20 06:38:41", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("683", "1", "2015-03-20 06:45:30", "2015-03-20 06:45:30", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to your OFFICE[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Centralized water system for round the clock[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 06:45:30", "2015-03-20 06:45:30", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("692", "1", "2015-03-20 07:50:33", "2015-03-20 07:50:33", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\"> <img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\"> <img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission.png\" width=\"50px\">Mission</span></p>\r\n\r\n<p style=\"text-align:justify;\">To deliver reliable & high quality housing and commercials thereby making a difference in the life of every \r\n   \r\n                &raquo; person and uplifting society benchmarks.\r\n	  	&raquo; To deliver value for money.\r\n	  	&raquo; To cater to the need of growing population.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 07:50:33", "2015-03-20 07:50:33", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("689", "1", "2015-03-20 07:46:46", "2015-03-20 07:46:46", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\"> <img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"100px\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][et_pb_blurb admin_label=\"Blurb\" title=\"who we are?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 07:46:46", "2015-03-20 07:46:46", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("688", "1", "2015-03-20 07:42:54", "2015-03-20 07:42:54", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\"> <img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"100px\">WHO WE ARE?</span></p>\r\n\r\n<p>Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n\r\nPriyaa Constructions its one of the fastest growing group having specialization in the areas of construction and property development. As a leading developer, we are always keen to maintain the quality independent by selecting the best premium fixtures and branded construction materials especially in the sector of plumbing, electrical, with quality interior and exterior finishing. This is evident from the fact that most of Priyaa Constructions apartments sell fast before the foundation work starts. It always stands with its credibility in completing the projects well in time.</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 07:42:54", "2015-03-20 07:42:54", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("684", "1", "2015-03-20 07:29:09", "2015-03-20 07:29:09", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">WHO WE ARE?</span></p>\r\n\r\n<p>Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n\r\nPriyaa Constructions its one of the fastest growing group having specialization in the areas of construction and property development. As a leading developer, we are always keen to maintain the quality independent by selecting the best premium fixtures and branded construction materials especially in the sector of plumbing, electrical, with quality interior and exterior finishing. This is evident from the fact that most of Priyaa Constructions apartments sell fast before the foundation work starts. It always stands with its credibility in completing the projects well in time.</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to your OFFICE[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Centralized water system for round the clock[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 07:29:09", "2015-03-20 07:29:09", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("687", "1", "2015-03-20 07:42:22", "2015-03-20 07:42:22", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\"> <img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"200px\">WHO WE ARE?</span></p>\r\n\r\n<p>Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n\r\nPriyaa Constructions its one of the fastest growing group having specialization in the areas of construction and property development. As a leading developer, we are always keen to maintain the quality independent by selecting the best premium fixtures and branded construction materials especially in the sector of plumbing, electrical, with quality interior and exterior finishing. This is evident from the fact that most of Priyaa Constructions apartments sell fast before the foundation work starts. It always stands with its credibility in completing the projects well in time.</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to your OFFICE[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Centralized water system for round the clock[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 07:42:22", "2015-03-20 07:42:22", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("686", "1", "2015-03-20 07:41:54", "2015-03-20 07:41:54", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\"> <img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"200px\">WHO WE ARE?</span></p>\r\n\r\n<p>Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n\r\nPriyaa Constructions its one of the fastest growing group having specialization in the areas of construction and property development. As a leading developer, we are always keen to maintain the quality independent by selecting the best premium fixtures and branded construction materials especially in the sector of plumbing, electrical, with quality interior and exterior finishing. This is evident from the fact that most of Priyaa Constructions apartments sell fast before the foundation work starts. It always stands with its credibility in completing the projects well in time.</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to your OFFICE[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Centralized water system for round the clock[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 07:41:54", "2015-03-20 07:41:54", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("245", "1", "2014-11-17 04:41:37", "2014-11-17 04:41:37", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 04:41:37", "2014-11-17 04:41:37", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("244", "1", "2014-11-17 04:34:47", "2014-11-17 04:34:47", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Nandavanaa.mp4\" /][/et_pb_slider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_mp4=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Nandavanaa.mp4\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 04:34:47", "2014-11-17 04:34:47", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("246", "1", "2014-11-17 04:44:05", "2014-11-17 04:44:05", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Customers are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 04:44:05", "2014-11-17 04:44:05", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("248", "1", "2014-11-17 04:46:26", "2014-11-17 04:46:26", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Customers are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 04:46:26", "2014-11-17 04:46:26", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("291", "1", "2014-11-17 06:07:52", "2014-11-17 06:07:52", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ashaya.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#009035; What Our Clients are Saying...</span>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 06:07:52", "2014-11-17 06:07:52", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("249", "1", "2014-11-17 04:49:43", "2014-11-17 04:49:43", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Customers are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 04:49:43", "2014-11-17 04:49:43", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("251", "1", "2014-11-17 04:50:46", "2014-11-17 04:50:46", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 04:50:46", "2014-11-17 04:50:46", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("250", "1", "2014-11-17 04:50:10", "2014-11-17 04:50:10", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Customers are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 04:50:10", "2014-11-17 04:50:10", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("274", "1", "2014-11-17 05:34:34", "2014-11-17 05:34:34", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 05:34:34", "2014-11-17 05:34:34", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("256", "1", "2014-11-17 04:54:29", "2014-11-17 04:54:29", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/jennifer_daniel.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/7.Sindhu-Priya.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/2.narayan-Rajasekar.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/10.Krishna-Deva-Kumar.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 04:54:29", "2014-11-17 04:54:29", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("258", "1", "2014-11-17 05:06:57", "2014-11-17 05:06:57", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal1.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/7.Sindhu-Priya.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/2.narayan-Rajasekar.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/10.Krishna-Deva-Kumar.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 05:06:57", "2014-11-17 05:06:57", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("293", "1", "2014-11-17 06:09:07", "2014-11-17 06:09:07", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ashaya.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1> What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 06:09:07", "2014-11-17 06:09:07", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("260", "1", "2014-11-17 05:08:10", "2014-11-17 05:08:10", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal11.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/7.Sindhu-Priya.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/2.narayan-Rajasekar.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/10.Krishna-Deva-Kumar.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 05:08:10", "2014-11-17 05:08:10", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("262", "1", "2014-11-17 05:18:00", "2014-11-17 05:18:00", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/7.Sindhu-Priya.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/2.narayan-Rajasekar.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/10.Krishna-Deva-Kumar.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 05:18:00", "2014-11-17 05:18:00", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("264", "1", "2014-11-17 05:22:56", "2014-11-17 05:22:56", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/7.Sindhu-Priya.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal2.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/10.Krishna-Deva-Kumar.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 05:22:56", "2014-11-17 05:22:56", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("267", "1", "2014-11-17 05:28:07", "2014-11-17 05:28:07", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal3.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/10.Krishna-Deva-Kumar.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 05:28:07", "2014-11-17 05:28:07", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("269", "1", "2014-11-17 05:28:58", "2014-11-17 05:28:58", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/10.Krishna-Deva-Kumar.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 05:28:58", "2014-11-17 05:28:58", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("271", "1", "2014-11-17 05:32:13", "2014-11-17 05:32:13", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Home.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal4.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#7cbec6\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 05:32:13", "2014-11-17 05:32:13", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("275", "1", "2014-11-17 05:39:02", "2014-11-17 05:39:02", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#0e6bd6\" transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 05:39:02", "2014-11-17 05:39:02", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("276", "1", "2014-11-17 05:40:04", "2014-11-17 05:40:04", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#008fcb\" transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Booking\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]Join today and get Our Amazing Offers[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 05:40:04", "2014-11-17 05:40:04", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("277", "1", "2014-11-17 05:49:10", "2014-11-17 05:49:10", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#008fcb\" transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Whether you are looking to own your dream home or property investment in HOSUR, we provide the best options for you.\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]<h1>Life isn\'t about the destination, but the star-studded journey that gets you there!!!</h1>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 05:49:10", "2014-11-17 05:49:10", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("278", "1", "2014-11-17 05:50:12", "2014-11-17 05:50:12", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#008fcb\" transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]<h1>Whether you are looking to own your dream home or property investment in HOSUR, we provide the best options for you.</h1>\r\n\r\nLife isn\'t about the destination, but the star-studded journey that gets you there[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 05:50:12", "2014-11-17 05:50:12", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("279", "1", "2014-11-17 05:51:37", "2014-11-17 05:51:37", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#008fcb\" transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]<span style=\"color:#fffff; font-size:25px; line-height:35px;\">Whether you are looking to own your dream home or property investment in HOSUR, we provide the best options for you.\r\n\r\nLife isn\'t about the destination, but the star-studded journey that gets you there[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 05:51:37", "2014-11-17 05:51:37", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("280", "1", "2014-11-17 05:52:22", "2014-11-17 05:52:22", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#008fcb\" transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]<span style=\"color:#fffff; font-size:40px; line-height:35px;\">Whether you are looking to own your dream home or property investment in HOSUR, we provide the best options for you.</span>\r\n\r\nLife isn\'t about the destination, but the star-studded journey that gets you there[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 05:52:22", "2014-11-17 05:52:22", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("281", "1", "2014-11-17 05:53:39", "2014-11-17 05:53:39", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#008fcb\" transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]<span style=\"color:#fffff; font-size:35px; line-height:40px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:55px; \"><b> HOSUR, </b></span>we provide the best options for you</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 05:53:39", "2014-11-17 05:53:39", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("282", "1", "2014-11-17 05:54:13", "2014-11-17 05:54:13", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic-.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#008fcb\" transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 05:54:13", "2014-11-17 05:54:13", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("829", "1", "2015-03-25 11:11:22", "2015-03-25 11:11:22", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides6.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify;\">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify;\">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-25 11:11:22", "2015-03-25 11:11:22", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("286", "1", "2014-11-17 05:57:00", "2014-11-17 05:57:00", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ashaya.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#008fcb\" transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 05:57:00", "2014-11-17 05:57:00", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("290", "1", "2014-11-17 06:06:20", "2014-11-17 06:06:20", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ashaya.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#009035; What Our Clients are Saying...</span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 06:06:20", "2014-11-17 06:06:20", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("287", "1", "2014-11-17 05:58:14", "2014-11-17 05:58:14", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ashaya.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#009035; >NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#009035; What Our Clients are Saying...</span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#008fcb\" transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 05:58:14", "2014-11-17 05:58:14", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("288", "1", "2014-11-17 06:00:33", "2014-11-17 06:00:33", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ashaya.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#009035; What Our Clients are Saying...</span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#008fcb\" transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 06:00:33", "2014-11-17 06:00:33", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("289", "1", "2014-11-17 06:05:38", "2014-11-17 06:05:38", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ashaya.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#009035; What Our Clients are Saying...</span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\" use_background_color=\"on\" text_orientation=\"center\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 06:05:38", "2014-11-17 06:05:38", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("292", "1", "2014-11-17 06:08:30", "2014-11-17 06:08:30", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ashaya.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#009035;> What Our Clients are Saying...</span>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 06:08:30", "2014-11-17 06:08:30", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("294", "1", "2014-11-17 06:10:20", "2014-11-17 06:10:20", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ashaya.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\">NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1> What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 06:10:20", "2014-11-17 06:10:20", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("295", "1", "2016-03-22 12:37:53", "2016-03-22 12:37:53", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides22.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution - Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">What we do ?</h2>\r\n<p style=\"text-align:justify ;\">»  We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-align:center; font:size: 5px;\">Why our service</h2>\r\n<p style=\"text-align:left; \">\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line  </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">Commitment</h2>\r\n<p style=\"text-align:justify\" ;\"=\"\"> » We don\'t simply give services to customers; we tend to foster a long-run relationship that is close & confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:22px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s. Green Vision Technology,\r\n» 	M/s. KEF Infrastructure India Pvt. Ltd., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s. Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s. Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s. Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh,\r\n» 	M/s. ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiri\'s Mechanised Bakery Pvt. Ltd.\r\n»	M/s. Sobha Developers .Ltd, Bommasandra.\r\n»	M/s. Sobha Developers Ltd., Rajasthan\r\n»	M/s. Mukundan Diary Products Ltd.,\r\n»	M/s. Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s. Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-autosave-v1", "", "", "2016-03-22 12:37:53", "2016-03-22 12:37:53", "", "22", "http://hrd.softons.cu.cc/22-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("875", "1", "2016-03-11 05:36:59", "2016-03-11 05:36:59", "", "Slides1", "", "inherit", "open", "open", "", "slides1-2", "", "", "2016-03-11 05:36:59", "2016-03-11 05:36:59", "", "22", "http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides12.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("876", "1", "2016-03-11 05:37:24", "2016-03-11 05:37:24", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides12.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is a recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» Every person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">To understand your deepest desires You, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify; \">Quality is non-negotiable, and we deliver it, no matter what the odds are. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">Showcased in a track record of excellence, Integrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 05:37:24", "2016-03-11 05:37:24", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("371", "1", "2014-12-03 07:47:46", "2014-12-03 07:47:46", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\">\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small1.jpg\">\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 07:47:46", "2014-12-03 07:47:46", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("338", "1", "2014-12-03 04:02:36", "2014-12-03 04:02:36", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#71c84f\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 04:02:36", "2014-12-03 04:02:36", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("296", "1", "2014-11-17 06:11:34", "2014-11-17 06:11:34", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ashaya.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1> What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 06:11:34", "2014-11-17 06:11:34", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("297", "1", "2014-11-17 06:13:37", "2014-11-17 06:13:37", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ashaya.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1> What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 06:13:37", "2014-11-17 06:13:37", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("298", "1", "2014-11-17 06:14:49", "2014-11-17 06:14:49", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ashaya.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1> What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 06:14:49", "2014-11-17 06:14:49", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("334", "1", "2014-12-03 03:57:45", "2014-12-03 03:57:45", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#71c84f\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1> What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 03:57:45", "2014-12-03 03:57:45", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("299", "1", "2014-11-17 08:09:55", "2014-11-17 08:09:55", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ashaya.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#71c84f\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1> What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 08:09:55", "2014-11-17 08:09:55", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("302", "1", "2014-11-17 08:25:04", "2014-11-17 08:25:04", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2b1.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ashaya.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#71c84f\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1> What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-11-17 08:25:04", "2014-11-17 08:25:04", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("305", "1", "2014-12-02 11:16:05", "2014-12-02 11:16:05", "", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2014-12-02 11:16:05", "2014-12-02 11:16:05", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("306", "1", "2014-12-02 11:18:40", "2014-12-02 11:18:40", "[et_pb_section][et_pb_row][et_pb_column type=\"2_3\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"enquiry@softons.com\" title=\"Enquiry Form\" /][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2014-12-02 11:18:40", "2014-12-02 11:18:40", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("307", "1", "2014-12-02 11:18:44", "2014-12-02 11:18:44", "<p>Name*<br />\r\n    [text* text-449] </p>\r\n\r\n<p>Email*<br />\r\n    [email* email-992]</p>\r\n\r\n<p>Subject<br />\r\n    [text text-57] </p>\r\n\r\n<p>Upload<br />\r\n   [file file-543]</p>\r\n\r\n<p>Message*<br />\r\n   [textarea* textarea-357]</p>\r\n\r\n<p>[submit \"Send\"]</p>\n[text-57]\n[text-449] <[email-992]>\nFrom: [text-449] <[email-992]>\r\nSubject: [text-57]\r\n\r\nMessage Body :\r\n[textarea-357]\r\n\r\n\r\n\r\n--\r\nThis e-mail was sent from a contact form on HRD Integrated Manpower Solution (http://hrd.softons.cu.cc)\ntech@softons.com\nReply-To: [email-992]\n[file-543]\n\n\n1\n[textarea-357]\n<softons> tech@softons.com\nThanks for getting in touch!!!! \r\n\r\nWe have received your message and would like to thank you for writing to us. We’ll reach out to you by shortly. This e-mail was sent from a contact form on DIVYA MANPOWER RESOURCES (P) LTD \r\n(http://dmrl.softons.cu.cc)\n[email-992]\nReply-To: tech@softons.com\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 the required field.\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.", "Enquiry Now", "", "publish", "open", "open", "", "contact-form-1", "", "", "2016-03-19 07:20:16", "2016-03-19 07:20:16", "", "0", "http://hrd.softons.cu.cc/?post_type=wpcf7_contact_form&#038;p=307", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wp_posts` VALUES("308", "1", "2014-12-02 11:23:40", "2014-12-02 11:23:40", "[et_pb_section][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2014-12-02 11:23:40", "2014-12-02 11:23:40", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("309", "1", "2014-12-02 11:27:37", "2014-12-02 11:27:37", "[et_pb_section][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2014-12-02 11:27:37", "2014-12-02 11:27:37", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("310", "1", "2014-12-02 11:32:21", "2014-12-02 11:32:21", "[et_pb_section][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]ENQUIRY NOW \r\n<hr/>\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2014-12-02 11:32:21", "2014-12-02 11:32:21", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("311", "1", "2014-12-02 11:34:09", "2014-12-02 11:34:09", "<p>Name*<br />\r\n     [text* text-949]</p>\r\n\r\n<p>Email Id*<br />\r\n    [email* email-632]</p>\r\n\r\n\r\n<p>[submit \"Send\"]</p>\n\n[text-949] <[email-632]>\nFrom:[text-949] <[email-632]>\r\n\r\n\r\n\r\n--\r\nThis e-mail was sent from a Unsubscribe form on Nandavana Properties Emailer (http://hrd.softons.cu.cc)\nnandaavana@gmail.com\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nNandavana <wordpress@softonsa.cu.cc>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Nandavana (http://hrd.softons.cu.cc)\n[your-email]\nReply-To: info@softons.com\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 the required field.\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.", "Unsubscribe", "", "publish", "open", "open", "", "unsubscribe", "", "", "2014-12-02 12:22:57", "2014-12-02 12:22:57", "", "0", "http://hrd.softons.cu.cc/?post_type=wpcf7_contact_form&#038;p=311", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wp_posts` VALUES("312", "1", "2014-12-02 11:36:29", "2014-12-02 11:36:29", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">UNSUBSCRIBE NOW</span></p> \r\n\r\nPlease enter your name and email address below to unsubscribe from future mailings.\r\n<br>\r\n[contact-form-7 id=\"311\" title=\"Unsubscribe\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Unsubscribe", "", "trash", "open", "open", "", "unsubscribe", "", "", "2016-03-18 10:29:49", "2016-03-18 10:29:49", "", "0", "http://hrd.softons.cu.cc/?page_id=312", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("313", "1", "2014-12-02 11:36:29", "2014-12-02 11:36:29", "[contact-form-7 id=\"311\" title=\"Unsubscribe\"]", "Unsubscribe", "", "inherit", "open", "open", "", "312-revision-v1", "", "", "2014-12-02 11:36:29", "2014-12-02 11:36:29", "", "312", "http://hrd.softons.cu.cc/312-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("314", "1", "2014-12-02 11:36:57", "2014-12-02 11:36:57", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\"][contact-form-7 id=\"311\" title=\"Unsubscribe\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Unsubscribe", "", "inherit", "open", "open", "", "312-revision-v1", "", "", "2014-12-02 11:36:57", "2014-12-02 11:36:57", "", "312", "http://hrd.softons.cu.cc/312-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("315", "1", "2014-12-02 11:39:32", "2014-12-02 11:39:32", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"][contact-form-7 id=\"311\" title=\"Unsubscribe\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Unsubscribe", "", "inherit", "open", "open", "", "312-revision-v1", "", "", "2014-12-02 11:39:32", "2014-12-02 11:39:32", "", "312", "http://hrd.softons.cu.cc/312-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("316", "1", "2014-12-02 11:40:50", "2014-12-02 11:40:50", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][contact-form-7 id=\"311\" title=\"Unsubscribe\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Unsubscribe", "", "inherit", "open", "open", "", "312-revision-v1", "", "", "2014-12-02 11:40:50", "2014-12-02 11:40:50", "", "312", "http://hrd.softons.cu.cc/312-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("317", "1", "2014-12-02 11:41:23", "2014-12-02 11:41:23", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">UNSUBSCRIBE NOW</strong></span></p> \r\n[contact-form-7 id=\"311\" title=\"Unsubscribe\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Unsubscribe", "", "inherit", "open", "open", "", "312-revision-v1", "", "", "2014-12-02 11:41:23", "2014-12-02 11:41:23", "", "312", "http://hrd.softons.cu.cc/312-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("318", "1", "2014-12-02 11:41:44", "2014-12-02 11:41:44", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">UNSUBSCRIBE NOW</span></p> \r\n[contact-form-7 id=\"311\" title=\"Unsubscribe\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Unsubscribe", "", "inherit", "open", "open", "", "312-revision-v1", "", "", "2014-12-02 11:41:44", "2014-12-02 11:41:44", "", "312", "http://hrd.softons.cu.cc/312-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("319", "1", "2014-12-02 11:42:14", "2014-12-02 11:42:14", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">UNSUBSCRIBE NOW</span></p> \r\n<hr/>\r\n[contact-form-7 id=\"311\" title=\"Unsubscribe\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Unsubscribe", "", "inherit", "open", "open", "", "312-revision-v1", "", "", "2014-12-02 11:42:14", "2014-12-02 11:42:14", "", "312", "http://hrd.softons.cu.cc/312-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("320", "1", "2014-12-02 11:43:17", "2014-12-02 11:43:17", "[et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">ENQUIRY NOW </strong></span></p> \r\n<hr>\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2014-12-02 11:43:17", "2014-12-02 11:43:17", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("321", "1", "2014-12-02 11:45:41", "2014-12-02 11:45:41", "[et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">ENQUIRY NOW </span></p> \r\n<hr>\r\nWHENEVER YOU THINK TO BUY LUXURY VILLAS, TEMPORARY AS WELL AS PERMANENT, WE ARE ALWAYS AT YOUR SERVICE TO THE FULLEST EXTENT.\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2014-12-02 11:45:41", "2014-12-02 11:45:41", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("323", "1", "2014-12-02 11:47:15", "2014-12-02 11:47:15", "[et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">ENQUIRY NOW </span></p> \r\n&nbsp;\r\nWHENEVER YOU THINK TO BUY LUXURY VILLAS, TEMPORARY AS WELL AS PERMANENT, WE ARE ALWAYS AT YOUR SERVICE TO THE FULLEST EXTENT.\r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2014-12-02 11:47:15", "2014-12-02 11:47:15", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("324", "1", "2014-12-02 11:47:37", "2014-12-02 11:47:37", "[et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">ENQUIRY NOW </span></p> \r\n\r\nWHENEVER YOU THINK TO BUY LUXURY VILLAS, TEMPORARY AS WELL AS PERMANENT, WE ARE ALWAYS AT YOUR SERVICE TO THE FULLEST EXTENT.\r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2014-12-02 11:47:37", "2014-12-02 11:47:37", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("325", "1", "2014-12-02 11:55:06", "2014-12-02 11:55:06", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">UNSUBSCRIBE NOW</span></p> \r\n\r\nHere is the easiest way to Unsubscribe Emailer\r\n\r\n[contact-form-7 id=\"311\" title=\"Unsubscribe\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Unsubscribe", "", "inherit", "open", "open", "", "312-revision-v1", "", "", "2014-12-02 11:55:06", "2014-12-02 11:55:06", "", "312", "http://hrd.softons.cu.cc/312-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("326", "1", "2014-12-02 11:55:40", "2014-12-02 11:55:40", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">UNSUBSCRIBE NOW</span></p> \r\n\r\nHere is the easiest way to Unsubscribe Emailer.\r\n\r\n\r\n[contact-form-7 id=\"311\" title=\"Unsubscribe\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Unsubscribe", "", "inherit", "open", "open", "", "312-revision-v1", "", "", "2014-12-02 11:55:40", "2014-12-02 11:55:40", "", "312", "http://hrd.softons.cu.cc/312-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("327", "1", "2014-12-02 11:56:13", "2014-12-02 11:56:13", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">UNSUBSCRIBE NOW</span></p> \r\n\r\nHere is the easiest way to Unsubscribe Emailer.\r\n\r\n<br/>\r\n[contact-form-7 id=\"311\" title=\"Unsubscribe\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Unsubscribe", "", "inherit", "open", "open", "", "312-revision-v1", "", "", "2014-12-02 11:56:13", "2014-12-02 11:56:13", "", "312", "http://hrd.softons.cu.cc/312-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("328", "1", "2014-12-02 11:56:33", "2014-12-02 11:56:33", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">UNSUBSCRIBE NOW</span></p> \r\n\r\nHere is the easiest way to Unsubscribe Emailer.\r\n<br>\r\n[contact-form-7 id=\"311\" title=\"Unsubscribe\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Unsubscribe", "", "inherit", "open", "open", "", "312-revision-v1", "", "", "2014-12-02 11:56:33", "2014-12-02 11:56:33", "", "312", "http://hrd.softons.cu.cc/312-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("329", "1", "2014-12-02 12:20:51", "2014-12-02 12:20:51", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">UNSUBSCRIBE NOW</span></p> \r\n\r\nPlease enter your name and email address below to unsubscribe from future mailings.\r\n<br>\r\n[contact-form-7 id=\"311\" title=\"Unsubscribe\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Unsubscribe", "", "inherit", "open", "open", "", "312-revision-v1", "", "", "2014-12-02 12:20:51", "2014-12-02 12:20:51", "", "312", "http://hrd.softons.cu.cc/312-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("330", "1", "2014-12-02 12:22:23", "2014-12-02 12:22:23", "[et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">ENQUIRY NOW </span></p> \r\n\r\nWhenever you think to buy luxury villas, temporary as well as permanent, we are always at your service to the fullest extent.\r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2014-12-02 12:22:23", "2014-12-02 12:22:23", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("332", "1", "2014-12-03 03:50:02", "2014-12-03 03:50:02", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC - HOSUR</strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ashaya.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#71c84f\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1> What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 03:50:02", "2014-12-03 03:50:02", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("333", "1", "2014-12-03 03:54:48", "2014-12-03 03:54:48", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ashaya.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Keeping you and your uniqueness in mind, Ashaya has come into existence. We have managed to satisfy even the pickiest of clients.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#71c84f\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1> What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 03:54:48", "2014-12-03 03:54:48", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("336", "1", "2014-12-03 03:59:52", "2014-12-03 03:59:52", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#71c84f\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1> What Our Clients are Saying...</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" JENNIFER DANIEL\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal12.png\"]\"I am happy and satisfied with the joint development of my plot at Hosur entrusted to Nandaavana Properties. They have carried out the project and completed in record time to the satisfaction of all the residents of the flats.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"SINDHU PRIYA\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal31.png\"]\"We met number of builders before finalizing on Nandaavana Properties. But it seemed to just connect with Nandaavana builder in first glance. Also thanks to the entire team.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\" NARAYAN RAJASEKAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal21.png\"]\"Wow! We were so impressed with the finished product. At first we thought the pricing was too good to be true. We were pleased with the end result of quality and craftsmanship and have recommended them too many of our friends.\"[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" author=\"KRISHNA DEVA KUMAR\" url_new_window=\"on\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" portrait_url=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Testimonal41.png\"]\"Working with Nandaavana Properties was an absolute pleasure...I can\'t imagine using anyone else, and heartly recommend Nandaavana to anyone looking to purchase a home.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\n\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Nandaavana Home 2", "", "publish", "open", "open", "", "nandaavana-home-2", "", "", "2014-12-03 03:59:52", "2014-12-03 03:59:52", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/nandaavana-home-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("337", "1", "2014-12-03 08:13:21", "2014-12-03 08:13:21", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/About-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/companyprofile-new.jpg\" alt=\"companyprofile-new\" width=\"195\" height=\"47\" class=\"alignnone size-full wp-image-980\">\r\n<p style=\"text-align: justify;\">We proudly introduce ourselves “HRD Integrated Manpower Solution” manpower supply service business has been started during June, 2011. It is  a well-established  manpower service providers in the Hosur area. Our company is operating actively from its base location/office in Hosur. We exclusively undertake Manpower , Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. We have a versatile databank, which is being updated on continuous basis through advertisement and professional contact. </p>\r\n<p style=\"text-align: justify;\"><strong>We have separate strong and experienced 5 teams has follows,</strong></p>\r\n	» Administration\r\n        » Human Resources\r\n	» Marketing \r\n	» Business Associates / Site Supervisors\r\n	» Legal/Statutory records[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">Currently, we have deployed around 1000 employees in our roll predominantly to the different types of companies as furnished below.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Automobile Industries\r\n» General Engineering Industries\r\n» Pharmaceutical Industries\r\n» Chemical industries\r\n» Foods & Dairy Farms, FMCG\r\n» Consumer Products and Process Industries\r\n» Precast Concrete Industries\r\n» Electrical & Electronics Industries\r\n» Interior decoration industries etc.,[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/manpower-graphic-278x300.png\" alt=\"manpower-graphic\" width=\"278\" height=\"300\" class=\"alignnone size-medium wp-image-976\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">We are providing its services from thorough knowledge of the needs of its end users. The integrated facility manpower (Graduates, Diplomas, I T Is, Skilled, semiskilled, unskilled, House Keeping, Executive Drivers etc., ) supply services maximize value and provide efficient services at lower operating costs, maintaining high service levels. Our approach is based upon creating an experienced customer focused management team based on proven management principles. The emphasis is on delivering lifetime care for our client’s critical assets; improve efficiency, productivity and profitability. Our aim is to provide cost effective value for money service.</p>\r\n\r\n<p style=\"text-align: justify;\">We would like to join together with our clients on long term basis in providing value added and timely service for all your HR/Manpower requirements. Our clientele consist of around 15 major companies in and around, Hosur and Bangalore.</p>\r\n\r\n\r\n<p style=\"text-align: justify;\">Further, we proudly inform to you that we have another one joint venture which was a mother concern was started during August, 2001 in the name of <strong>“M/s.Divya Manpower Resources Pvt. Ltd.,” </strong>for our administrative convenience. We have 20 valuable clients in this name.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Profile", "", "publish", "open", "open", "", "profile", "", "", "2016-03-22 12:37:57", "2016-03-22 12:37:57", "", "0", "http://hrd.softons.cu.cc/?page_id=337", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("971", "1", "2016-03-16 05:35:55", "2016-03-16 05:35:55", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/About-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">About Us </span></p>\r\n<p style=\"text-align: justify;\">We proudly introduce ourselves “HRD Integrated Manpower Solution” manpower supply service business has been started during June, 2011. It is  a well-established  manpower service providers in the Hosur area. Our company is operating actively from its base location/office in Hosur. We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. We have a versatile databank, which is being updated on continuous basis through advertisement and professional contact. </p>\r\n<p style=\"text-align: justify;\"><strong>We have separate strong and experienced 5 teams for the following.</strong></p>\r\n	» Administration\r\n        » Human Resources\r\n	» Marketing \r\n	» Business Associates / Site Supervisors\r\n	» Legal/Statutory.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2016-03-16 05:35:55", "2016-03-16 05:35:55", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("970", "1", "2016-03-16 05:11:10", "2016-03-16 05:11:10", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/About-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">About Us </span></p>\r\n<p style=\"text-align: justify;\">We proudly introduce ourselves “HRD Integrated Manpower Solution” manpower supply service business has been started during June, 2011. It is  a well-established  manpower service providers in the Hosur area. Our company is operating actively from its base location/office in Hosur. We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. We have a versatile databank, which is being updated on continuous basis through advertisement and professional contact. </p>\r\n<p style=\"text-align: justify;\"><strong>We have separate strong and experienced 5 teams for the following.</strong></p>\r\n	&raquo; Administration\r\n        &raquo; Human Resources\r\n	&raquo; Marketing \r\n	&raquo; Business Associates / Site Supervisors\r\n	&raquo; Legal/Statutory.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/mission1.png\" alt=\"\">&nbsp;Client Orientation</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teaming many with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, with all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n\r\n<span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Quality_Policy_icon.png\" alt=\"\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">We are committed to meet the expectations of our customers, through our Well experienced and established service delivery system, that is sensitive and accommodative to continuous technology up gradation and value analysis. We Create world-class eco friendly homes with the highest standards of professionalism, ethics, quality and customer service.\r\n\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/CoreValues-295x300.jpg\" alt=\"CoreValues\" width=\"400\" class=\"alignnone size-medium wp-image-767\">\r\n\r\n\r\n\r\n [/wc_column][/wc_row][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#fff; font-size:25px; line-height:12px;\">PRIYAA CONSTRUCTION has been one of the leading developers in HOSUR </span></p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutusbottom2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2016-03-16 05:11:10", "2016-03-16 05:11:10", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("969", "1", "2016-03-16 04:53:39", "2016-03-16 04:53:39", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/About-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel that you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each client\'s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/mission1.png\" alt=\"\">&nbsp;Client Orientation</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teaming many with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, with all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n\r\n<span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Quality_Policy_icon.png\" alt=\"\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">We are committed to meet the expectations of our customers, through our Well experienced and established service delivery system, that is sensitive and accommodative to continuous technology up gradation and value analysis. We Create world-class eco friendly homes with the highest standards of professionalism, ethics, quality and customer service.\r\n\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/CoreValues-295x300.jpg\" alt=\"CoreValues\" width=\"400\" class=\"alignnone size-medium wp-image-767\">\r\n\r\n\r\n\r\n [/wc_column][/wc_row][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#fff; font-size:25px; line-height:12px;\">PRIYAA CONSTRUCTION has been one of the leading developers in HOSUR </span></p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutusbottom2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2016-03-16 04:53:39", "2016-03-16 04:53:39", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("769", "1", "2015-03-24 11:53:08", "2015-03-24 11:53:08", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\" alt=\"\">&nbsp;Vision &amp; Mission</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teeming millions with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n<span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\" alt=\"\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance. \r\n\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/CoreValues-295x300.jpg\" alt=\"CoreValues\" width=\"400\" class=\"alignnone size-medium wp-image-767\">\r\n\r\n\r\n\r\n [/wc_column][/wc_row]</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\">NANDAAVANA PROPERTIES has been one of the leading developers in HOSUR &amp; BANGALORE</span></p>\r\n<p style=\"text-align:center;\">Nandaavana Properties can provide a complete range of amenities to ensure that you enjoy your stay with us. </p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/01/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-24 11:53:08", "2015-03-24 11:53:08", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("340", "1", "2014-12-03 04:06:33", "2014-12-03 04:06:33", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#71c84f\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 04:06:33", "2014-12-03 04:06:33", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("343", "1", "2014-12-03 04:10:32", "2014-12-03 04:10:32", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2d.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#71c84f\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 04:10:32", "2014-12-03 04:10:32", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("566", "1", "2014-12-10 10:42:37", "2014-12-10 10:42:37", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-10 10:42:37", "2014-12-10 10:42:37", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("346", "1", "2014-12-03 04:59:48", "2014-12-03 04:59:48", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#71c84f\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 04:59:48", "2014-12-03 04:59:48", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("349", "1", "2014-12-03 06:04:35", "2014-12-03 06:04:35", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#71c84f\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 06:04:35", "2014-12-03 06:04:35", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("356", "1", "2014-12-03 06:56:01", "2014-12-03 06:56:01", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 06:56:01", "2014-12-03 06:56:01", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("351", "1", "2014-12-03 06:27:46", "2014-12-03 06:27:46", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#71c84f\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 06:27:46", "2014-12-03 06:27:46", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("352", "1", "2014-12-03 06:44:57", "2014-12-03 06:44:57", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#d3d3d3\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 06:44:57", "2014-12-03 06:44:57", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("354", "1", "2014-12-03 06:53:01", "2014-12-03 06:53:01", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ededed\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 06:53:01", "2014-12-03 06:53:01", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("355", "1", "2014-12-03 06:54:51", "2014-12-03 06:54:51", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c.jpg\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 06:54:51", "2014-12-03 06:54:51", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("358", "1", "2014-12-03 07:08:40", "2014-12-03 07:08:40", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 07:08:40", "2014-12-03 07:08:40", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("360", "1", "2014-12-03 07:20:49", "2014-12-03 07:20:49", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 07:20:49", "2014-12-03 07:20:49", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("361", "1", "2014-12-03 07:30:37", "2014-12-03 07:30:37", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_blurb][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 07:30:37", "2014-12-03 07:30:37", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("363", "1", "2014-12-03 07:33:50", "2014-12-03 07:33:50", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\">\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\">\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 07:33:50", "2014-12-03 07:33:50", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("362", "1", "2014-12-03 07:32:24", "2014-12-03 07:32:24", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]The Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_blurb][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/The-exotic.png\">\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]We are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 07:32:24", "2014-12-03 07:32:24", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("365", "1", "2014-12-03 07:37:24", "2014-12-03 07:37:24", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small.jpg\">\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\">\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 07:37:24", "2014-12-03 07:37:24", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("367", "1", "2014-12-03 07:43:14", "2014-12-03 07:43:14", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small1.jpg\">\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue.png\">\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 07:43:14", "2014-12-03 07:43:14", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("368", "1", "2014-12-03 07:44:23", "2014-12-03 07:44:23", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small1.jpg\">\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small1.jpg\">\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 07:44:23", "2014-12-03 07:44:23", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("370", "1", "2014-12-03 07:46:07", "2014-12-03 07:46:07", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\">\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small1.jpg\">\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 07:46:07", "2014-12-03 07:46:07", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("372", "1", "2014-12-03 07:48:24", "2014-12-03 07:48:24", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\">\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small1.jpg\">\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 07:48:24", "2014-12-03 07:48:24", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("375", "1", "2014-12-03 07:56:43", "2014-12-03 07:56:43", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\">\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\">\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 07:56:43", "2014-12-03 07:56:43", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("376", "1", "2014-12-03 08:01:10", "2014-12-03 08:01:10", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\">\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\">\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 08:01:10", "2014-12-03 08:01:10", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("377", "1", "2014-12-03 08:01:48", "2014-12-03 08:01:48", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\">\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\">\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 08:01:48", "2014-12-03 08:01:48", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("378", "1", "2014-12-03 08:08:03", "2014-12-03 08:08:03", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK & 3BHK villas in a New and Innovative Concept. </p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\">\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\">\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 08:08:03", "2014-12-03 08:08:03", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("379", "1", "2014-12-03 08:09:20", "2014-12-03 08:09:20", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\">\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\">\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 08:09:20", "2014-12-03 08:09:20", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("380", "1", "2014-12-03 08:13:21", "2014-12-03 08:13:21", "[et_pb_section][et_pb_row][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 08:13:21", "2014-12-03 08:13:21", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("381", "1", "2016-03-22 11:22:58", "2016-03-22 11:22:58", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/About-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/companyprofile-new.jpg\" alt=\"companyprofile-new\" width=\"195\" height=\"47\" class=\"alignnone size-full wp-image-980\">\r\n<p style=\"text-align: justify;\">We proudly introduce ourselves “HRD Integrated Manpower Solution” manpower supply service business has been started during June, 2011. It is  a well-established  manpower service providers in the Hosur area. Our company is operating actively from its base location/office in Hosur. We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. We have a versatile databank, which is being updated on continuous basis through advertisement and professional contact. </p>\r\n<p style=\"text-align: justify;\"><strong>We have separate strong and experienced 5 teams has follows,</strong></p>\r\n	» Administration\r\n        » Human Resources\r\n	» Marketing \r\n	» Business Associates / Site Supervisors\r\n	» Legal/Statutory.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">Currently, we have deployed around 1000 employees in our roll predominantly to the different types of companies as furnished below.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Automobile and Engineering Industries\r\n» Manufacturing Industries\r\n» Pharmaceutical Industries\r\n» Chemical industries \r\n» Automobile and Light Engineering industries \r\n» Foods &amp; Dairy Farms, FMGC \r\n» Consumer Products and Process Industries\r\n» Civil / Construction companies \r\n» Electrical &amp; Electronics Industries\r\n» Interior decoration industries etc.,\r\n» Protective Packaging Industries.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/manpower-graphic-278x300.png\" alt=\"manpower-graphic\" width=\"278\" height=\"300\" class=\"alignnone size-medium wp-image-976\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">We are providing its services from thorough knowledge of the needs of its end users. The integrated facility manpower (Graduates, Diplomas, I T Is, Skilled, semiskilled, unskilled, House Keeping, Executive Drivers etc., ) supply services maximize value and provide efficient services at lower operating costs, maintaining high service levels. Our approach is based upon creating an experienced customer focused management team based on proven management principles. The emphasis is on delivering lifetime care for our client’s critical assets; improve efficiency, productivity and profitability. Our aim is to provide cost effective value for money service.</p>\r\n\r\n<p style=\"text-align: justify;\">We would like to join together with our clients on long term basis in providing value added and timely service for all your HR/Manpower requirements. Our clientele consist of around 15 major companies in and around, Hosur and Bangalore.</p>\r\n\r\n\r\n<p style=\"text-align: justify;\">Further, we proudly inform to you that we have another one joint venture which was a mother concern was started during August, 2001 in the name of <strong>“M/s.Divya Manpower Resources Pvt. Ltd.,” </strong>for our administrative convenience. We have 20 valuable clients in this name.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Profile", "", "inherit", "open", "open", "", "337-autosave-v1", "", "", "2016-03-22 11:22:58", "2016-03-22 11:22:58", "", "337", "http://hrd.softons.cu.cc/337-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("972", "1", "2016-03-16 05:39:56", "2016-03-16 05:39:56", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/About-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">About Us </span></p>\r\n<p style=\"text-align: justify;\">We proudly introduce ourselves “HRD Integrated Manpower Solution” manpower supply service business has been started during June, 2011. It is  a well-established  manpower service providers in the Hosur area. Our company is operating actively from its base location/office in Hosur. We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. We have a versatile databank, which is being updated on continuous basis through advertisement and professional contact. </p>\r\n<p style=\"text-align: justify;\"><strong>We have separate strong and experienced 5 teams for the following.</strong></p>\r\n	» Administration\r\n        » Human Resources\r\n	» Marketing \r\n	» Business Associates / Site Supervisors\r\n	» Legal/Statutory.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">Currently, we have deployed around 1000 employees in our roll predominantly to the different types of companies as furnished below.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]&raquo; Automobile and Engineering Industries\r\n&raquo; Manufacturing Industries\r\n&raquo; Pharmaceutical Industries\r\n&raquo; Chemical industries \r\n&raquo; Automobile and Light Engineering industries \r\n&raquo; Foods & Dairy Farms, FMGC \r\n&raquo; Consumer Products and Process Industries\r\n&raquo; Civil / Construction companies \r\n&raquo; Electrical & Electronics Industries\r\n&raquo; Interior decoration industries etc.,\r\n&raquo; Protective Packaging Industries.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2016-03-16 05:39:56", "2016-03-16 05:39:56", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("382", "1", "2014-12-03 08:15:28", "2014-12-03 08:15:28", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too. </p>\r\n\r\n<p style=\"text-align:justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n\r\n<p style=\"text-align:justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 08:15:28", "2014-12-03 08:15:28", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("383", "1", "2014-12-03 08:16:08", "2014-12-03 08:16:08", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too. </p>\r\n\r\n<p style=\"text-align:justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n\r\n<p style=\"text-align:justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 08:16:08", "2014-12-03 08:16:08", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("384", "1", "2014-12-03 08:16:34", "2014-12-03 08:16:34", "[et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too. </p>\r\n\r\n<p style=\"text-align:justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n\r\n<p style=\"text-align:justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 08:16:34", "2014-12-03 08:16:34", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("385", "1", "2014-12-03 08:19:42", "2014-12-03 08:19:42", "[et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too. </p>\r\n\r\n<p style=\"text-align:justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n\r\n<p style=\"text-align:justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]We at Nandaavana Properties strive to enhance the quality of our customersÃ¢â‚¬â„¢ experience by providing each of them their dream home.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 08:19:42", "2014-12-03 08:19:42", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("386", "1", "2014-12-03 09:24:08", "2014-12-03 09:24:08", "[et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too. </p>\n\n<p style=\"text-align:justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\n\n<p style=\"text-align:justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]We at Nandaavana Properties strive to enhance the quality of our customersÃ¢â‚¬â„¢ experience by providing each of them their dream home.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About us", "", "publish", "open", "open", "", "about-us-3", "", "", "2014-12-03 09:24:08", "2014-12-03 09:24:08", "", "0", "http://hrd.softons.cu.cc/et_pb_layout/about-us-3/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("387", "1", "2014-12-03 09:45:03", "2014-12-03 09:45:03", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\">\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\">\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-03 09:45:03", "2014-12-03 09:45:03", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("390", "1", "2014-12-03 09:49:42", "2014-12-03 09:49:42", "[et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too. </p>\r\n\r\n<p style=\"text-align:justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n\r\n<p style=\"text-align:justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>\r\n\r\n[wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n\r\n<center>Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</center>\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"]\r\n\r\n<center>We at Nandaavana Properties strive to enhance the quality of our customersÃ¢â‚¬â„¢ experience by providing each of them their dream home.</center>\r\n\r\n[/wc_column][/wc_row][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 09:49:42", "2014-12-03 09:49:42", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("389", "1", "2014-12-03 09:47:36", "2014-12-03 09:47:36", "[et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too. </p>\r\n\r\n<p style=\"text-align:justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n\r\n<p style=\"text-align:justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>\r\n\r\n[wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n\r\nSample Content\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"]\r\n\r\nSample Content\r\n\r\n[/wc_column][/wc_row][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]We at Nandaavana Properties strive to enhance the quality of our customersÃ¢â‚¬â„¢ experience by providing each of them their dream home.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 09:47:36", "2014-12-03 09:47:36", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("391", "1", "2014-12-03 09:55:07", "2014-12-03 09:55:07", "[et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too. </p>\r\n\r\n<p style=\"text-align:justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n\r\n<p style=\"text-align:justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>\r\n\r\n[wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n\r\n<p style=text-align:justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n\r\n<p style=text-align:justify;\">We at Nandaavana Properties strive to enhance the quality of our customersÃ¢â‚¬â„¢ experience by providing each of them their dream home.</p>\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"]\r\n\r\n\r\n\r\n[/wc_column][/wc_row][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 09:55:07", "2014-12-03 09:55:07", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("392", "1", "2014-12-03 09:56:25", "2014-12-03 09:56:25", "[et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>\r\n[wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customersÃ¢â‚¬â„¢ experience by providing each of them their dream home.</p>\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#6adcfa\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#6adcfa\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#6adcfa\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#6adcfa\"]\r\n[/wc_column][/wc_row][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 09:56:25", "2014-12-03 09:56:25", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("393", "1", "2014-12-03 09:59:15", "2014-12-03 09:59:15", "[et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>\r\n[wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customersÃ¢â‚¬â„¢ experience by providing each of them their dream home.</p>\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 09:59:15", "2014-12-03 09:59:15", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("394", "1", "2014-12-03 10:03:35", "2014-12-03 10:03:35", "[et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>\r\n[wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:35px;\">Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:35px;\">Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customersÃ¢â‚¬â„¢ experience by providing each of them their dream home.</p>\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 10:03:35", "2014-12-03 10:03:35", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("395", "1", "2014-12-03 10:05:49", "2014-12-03 10:05:49", "[et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:35px;\">Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:35px;\">Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customersÃ¢â‚¬â„¢ experience by providing each of them their dream home.</p>\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 10:05:49", "2014-12-03 10:05:49", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("396", "1", "2014-12-03 10:06:22", "2014-12-03 10:06:22", "[et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:35px;\">Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:35px;\">Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customersÃ¢â‚¬â„¢ experience by providing each of them their dream home.</p>\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 10:06:22", "2014-12-03 10:06:22", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("397", "1", "2014-12-03 10:07:01", "2014-12-03 10:07:01", "[et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\">Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\">Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customersÃ¢â‚¬â„¢ experience by providing each of them their dream home.</p>\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 10:07:01", "2014-12-03 10:07:01", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("398", "1", "2014-12-03 10:08:05", "2014-12-03 10:08:05", "[et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\">Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\">Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\">Our Core Values</span>\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 10:08:05", "2014-12-03 10:08:05", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("402", "1", "2014-12-03 10:12:04", "2014-12-03 10:12:04", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\">Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\">Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\">Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 10:12:04", "2014-12-03 10:12:04", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("400", "1", "2014-12-03 10:10:13", "2014-12-03 10:10:13", "[et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\">Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\">Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\">Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 10:10:13", "2014-12-03 10:10:13", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("401", "1", "2014-12-03 10:11:51", "2014-12-03 10:11:51", "[et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\">Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\">Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\">Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 10:11:51", "2014-12-03 10:11:51", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("403", "1", "2014-12-03 10:15:09", "2014-12-03 10:15:09", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\">Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\">Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\">Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\">Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 10:15:09", "2014-12-03 10:15:09", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("404", "1", "2014-12-03 10:20:44", "2014-12-03 10:20:44", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\">Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\">Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\">Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\">Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"90\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"95\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Sample Content\" percentage=\"100\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row]</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 10:20:44", "2014-12-03 10:20:44", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("405", "1", "2014-12-03 10:22:19", "2014-12-03 10:22:19", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\">Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\">Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\">Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\">Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"90\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"95\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"92\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"96\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"94\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row]</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 10:22:19", "2014-12-03 10:22:19", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("407", "1", "2014-12-03 10:40:08", "2014-12-03 10:40:08", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision.png\">Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\">Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\">Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\">Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"90\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"95\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"92\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"96\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"94\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row]</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 10:40:08", "2014-12-03 10:40:08", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("409", "1", "2014-12-03 10:42:28", "2014-12-03 10:42:28", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision1.png\">Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\">Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\">Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\">Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"90\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"95\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"92\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"96\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"94\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row]</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 10:42:28", "2014-12-03 10:42:28", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("414", "1", "2014-12-03 11:01:25", "2014-12-03 11:01:25", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision11.png\">Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision11.png\">Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision11.png\">Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy.png\">Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"90\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"95\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"92\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"96\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"94\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row]</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 11:01:25", "2014-12-03 11:01:25", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("415", "1", "2014-12-03 11:01:52", "2014-12-03 11:01:52", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision11.png\">Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission1.png\">Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision11.png\">Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy.png\">Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"90\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"95\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"92\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"96\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"94\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row]</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 11:01:52", "2014-12-03 11:01:52", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("420", "1", "2014-12-03 11:25:34", "2014-12-03 11:25:34", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy.png\">Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"90\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"95\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"92\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"96\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"94\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row]</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 11:25:34", "2014-12-03 11:25:34", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("421", "1", "2014-12-03 11:26:54", "2014-12-03 11:26:54", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"90\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"95\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"92\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"96\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"94\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row]</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 11:26:54", "2014-12-03 11:26:54", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("422", "1", "2014-12-03 11:29:09", "2014-12-03 11:29:09", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">&nbsp;Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"90\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"95\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"92\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"96\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"94\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row]</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 11:29:09", "2014-12-03 11:29:09", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("426", "1", "2014-12-03 12:05:38", "2014-12-03 12:05:38", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">&nbsp;Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"90\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"95\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"92\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"96\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"94\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/ABOUTUS-SECTION.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 12:05:38", "2014-12-03 12:05:38", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("424", "1", "2014-12-03 12:04:50", "2014-12-03 12:04:50", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">&nbsp;Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"90\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"95\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"92\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"96\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"94\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/ABOUTUS-SECTION.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 12:04:50", "2014-12-03 12:04:50", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("425", "1", "2014-12-03 12:05:14", "2014-12-03 12:05:14", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">&nbsp;Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"90\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"95\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"92\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"96\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"94\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/ABOUTUS-SECTION.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 12:05:14", "2014-12-03 12:05:14", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("427", "1", "2014-12-03 12:06:39", "2014-12-03 12:06:39", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">&nbsp;Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"90\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"95\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"92\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"96\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"94\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/ABOUTUS-SECTION.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 12:06:39", "2014-12-03 12:06:39", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("429", "1", "2014-12-03 12:08:26", "2014-12-03 12:08:26", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">&nbsp;Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"90\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"95\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"92\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"96\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"94\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/ABOUTUS-SECTION.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 12:08:26", "2014-12-03 12:08:26", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("428", "1", "2014-12-03 12:07:40", "2014-12-03 12:07:40", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">&nbsp;Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"90\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"95\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"92\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"96\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"94\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/ABOUTUS-SECTION.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/ABOUTUS-SECTION.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 12:07:40", "2014-12-03 12:07:40", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("430", "1", "2014-12-03 12:09:40", "2014-12-03 12:09:40", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">&nbsp;Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"90\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"95\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"92\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"96\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"94\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/ABOUTUS-SECTION.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 12:09:40", "2014-12-03 12:09:40", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("431", "1", "2014-12-03 12:17:08", "2014-12-03 12:17:08", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">&nbsp;Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"90\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"95\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"92\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"96\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"94\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/ABOUTUS-SECTION.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">NANDAAVANA PROPERTIES is a leading developers at HOSUR</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 12:17:08", "2014-12-03 12:17:08", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("433", "1", "2014-12-03 12:17:41", "2014-12-03 12:17:41", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">&nbsp;Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"90\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"95\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"92\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"96\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"94\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">NANDAAVANA PROPERTIES is a leading developers at HOSUR</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 12:17:41", "2014-12-03 12:17:41", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("434", "1", "2014-12-03 12:18:48", "2014-12-03 12:18:48", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">&nbsp;Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"90\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"95\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"92\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"96\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"94\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:20px; line-height:12px;\">NANDAAVANA PROPERTIES has been one of the leading developers in HOSUR</span></p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 12:18:48", "2014-12-03 12:18:48", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("435", "1", "2014-12-03 12:22:08", "2014-12-03 12:22:08", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">&nbsp;Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"90\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"95\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"92\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"96\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"94\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\">NANDAAVANA PROPERTIES has been one of the leading developers in HOSUR</span></p>\r\n<p style=\"text-align:center;\">Nandaavana Properties can provide a complete range of amenities to ensure that you enjoy your stay with us. </p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-03 12:22:08", "2014-12-03 12:22:08", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("437", "1", "2014-12-04 05:48:42", "2014-12-04 05:48:42", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\">Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">&nbsp;Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"90\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"95\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"92\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"96\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"94\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\">NANDAAVANA PROPERTIES has been one of the leading developers in HOSUR</span></p>\r\n<p style=\"text-align:center;\">Nandaavana Properties can provide a complete range of amenities to ensure that you enjoy your stay with us. </p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-04 05:48:42", "2014-12-04 05:48:42", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("438", "1", "2014-12-04 05:49:18", "2014-12-04 05:49:18", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\"><strong>NANDAAVANA PROPERTIES</strong>Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">&nbsp;Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"90\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"95\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"92\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"96\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"94\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\">NANDAAVANA PROPERTIES has been one of the leading developers in HOSUR</span></p>\r\n<p style=\"text-align:center;\">Nandaavana Properties can provide a complete range of amenities to ensure that you enjoy your stay with us. </p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-04 05:49:18", "2014-12-04 05:49:18", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("664", "1", "2015-01-02 12:33:51", "2015-01-02 12:33:51", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\"><strong>NANDAAVANA PROPERTIES</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Our Vision</span>\r\n<p style=\"text-align: justify;\">Upgrading lifestyle for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">&nbsp;Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Pricing\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"100\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\">NANDAAVANA PROPERTIES has been one of the leading developers in HOSUR &amp; BANGALORE</span></p>\r\n<p style=\"text-align:center;\">Nandaavana Properties can provide a complete range of amenities to ensure that you enjoy your stay with us. </p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/01/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-01-02 12:33:51", "2015-01-02 12:33:51", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("439", "1", "2014-12-04 05:49:54", "2014-12-04 05:49:54", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\"><strong>NANDAAVANA PROPERTIES</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">&nbsp;Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"90\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"95\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"92\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"96\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"94\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\">NANDAAVANA PROPERTIES has been one of the leading developers in HOSUR</span></p>\r\n<p style=\"text-align:center;\">Nandaavana Properties can provide a complete range of amenities to ensure that you enjoy your stay with us. </p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-04 05:49:54", "2014-12-04 05:49:54", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("889", "1", "2016-03-11 10:54:23", "2016-03-11 10:54:23", "", "icons-ervice", "", "inherit", "open", "open", "", "icons-ervice", "", "", "2016-03-11 10:54:23", "2016-03-11 10:54:23", "", "22", "http://hrd.softons.cu.cc/wp-content/uploads/2014/11/icons-ervice.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("890", "1", "2016-03-11 10:56:29", "2016-03-11 10:56:29", "", "commetment", "", "inherit", "open", "open", "", "commetment", "", "", "2016-03-11 10:56:29", "2016-03-11 10:56:29", "", "22", "http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("891", "1", "2016-03-11 10:57:53", "2016-03-11 10:57:53", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#8224e3\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform:uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is a recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» Every person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">To understand your deepest desires You, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify; \">Quality is non-negotiable, and we deliver it, no matter what the odds are. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">Showcased in a track record of excellence, Integrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 10:57:53", "2016-03-11 10:57:53", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("896", "1", "2016-03-11 11:39:03", "2016-03-11 11:39:03", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#8224e3\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform:uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or specialty.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We re-do the work the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides3.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is a recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» Every person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 11:39:03", "2016-03-11 11:39:03", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("893", "1", "2016-03-11 11:21:05", "2016-03-11 11:21:05", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#8224e3\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform:uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or specialty.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We re-do the work until the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur & Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is a recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» Every person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">To understand your deepest desires You, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify; \">Quality is non-negotiable, and we deliver it, no matter what the odds are. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">Showcased in a track record of excellence, Integrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 11:21:05", "2016-03-11 11:21:05", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("892", "1", "2016-03-11 11:10:27", "2016-03-11 11:10:27", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#8224e3\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform:uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or specialty.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]&raquo; We offer 100% excellence & reliable service\r\n&raquo; We have highly experienced Workers & Staff\r\n&raquo; We re-do the work until the customer is 100% satisfied\r\n&raquo; We offer our best services anytime & anywhere in Karnataka                                                           and eventually\r\n&raquo; We See God Through Work[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We don\'t simply give services to customers; we tend to foster a long-run relationship that is close & confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness, quality of candidates and guaranteeing lowest efforts by the client within the choice method.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is a recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» Every person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">To understand your deepest desires You, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify; \">Quality is non-negotiable, and we deliver it, no matter what the odds are. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">Showcased in a track record of excellence, Integrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 11:10:27", "2016-03-11 11:10:27", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("895", "1", "2016-03-11 11:38:12", "2016-03-11 11:38:12", "", "Slides3", "", "inherit", "open", "open", "", "slides3", "", "", "2016-03-11 11:38:12", "2016-03-11 11:38:12", "", "22", "http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("894", "1", "2016-03-11 11:23:38", "2016-03-11 11:23:38", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#8224e3\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform:uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or specialty.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We re-do the work until the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is a recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» Every person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">To understand your deepest desires You, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify; \">Quality is non-negotiable, and we deliver it, no matter what the odds are. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">Showcased in a track record of excellence, Integrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 11:23:38", "2016-03-11 11:23:38", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("897", "1", "2016-03-11 11:44:35", "2016-03-11 11:44:35", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#8224e3\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform:uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or specialty.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We do the work the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides3.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is a recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» Every person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 11:44:35", "2016-03-11 11:44:35", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("898", "1", "2016-03-11 11:48:31", "2016-03-11 11:48:31", "", "Slides4", "", "inherit", "open", "open", "", "slides4", "", "", "2016-03-11 11:48:31", "2016-03-11 11:48:31", "", "22", "http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("903", "1", "2016-03-11 12:12:58", "2016-03-11 12:12:58", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform:uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or specialty.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We do the work the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides4.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#1e73be; font-size:25px;\">HOSUR (TN)</span></p>\r\n\r\n<p style=\"text-align:left;\">\r\n&amp;raqu;	M/s. Micro Labs Ltd., Unit I,\r\n&amp;raqu;      M/s  Green Vision Technology\r\n&amp;raqu; 	M/s. KEF Infrastructure India Pvt. td., \r\n&amp;raqu; 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n&amp;raqu; 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n&amp;raqu; 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n&amp;raqu; 	M/s.Ritway Packages Pvt. Ltd.,\r\n&amp;raqu;	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n&amp;raqu; 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#1e73be; font-size:25px;\">BANGALORE</span></p>\r\n\r\n<p style=\"text-align:left;\">\r\n&raquo; M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n&raquo;	M/s. Micro Labs Limited, (Veerasandra)\r\n&raquo;	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n&raquo;	M/s.Sobha Developers .Ltd, Bommasandra.\r\n&raquo;	M/s.Sobha Developers Ltd., Rajasthan\r\n&raquo;	M/s.Mukundan Diary Products Ltd.,\r\n&raquo;	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n&raquo;	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 12:12:58", "2016-03-11 12:12:58", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("899", "1", "2016-03-11 11:48:51", "2016-03-11 11:48:51", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#8224e3\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform:uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or specialty.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We do the work the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides4.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is a recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» Every person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 11:48:51", "2016-03-11 11:48:51", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("900", "1", "2016-03-11 11:49:45", "2016-03-11 11:49:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/slide4.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">ENQUIRY NOW </span></p> \r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224E3; font-size:35px; line-height:12px;\">Reach Us </span></p> \r\n\r\n<span style=\"font-size:20px;\"><strong>HRD INTEGRATED MANPOWER SOLUTION</strong></span>\r\nNo. 1st Floor, Dharani Complex , \r\nNear Muthumariamman Temple ,\r\nDharga, Hosur ,\r\nTamil Nadu - 635 126.\r\n<strong>Land Line</strong> :  04344 – 276172\r\n<strong>Mobile</strong>    : +91 9362310019, +91 9626785460\r\n<strong>Email</strong>     : hrdintegratedman@gmail.com\r\n<strong>Email</strong>     : sivanannamalai1975@gmail.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2016-03-11 11:49:45", "2016-03-11 11:49:45", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("901", "1", "2016-03-11 12:02:15", "2016-03-11 12:02:15", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/slide4.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Enquiry Now </span></p> \r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224E3; font-size:35px; line-height:12px;\">Reach Us </span></p> \r\n\r\n<span style=\"font-size:20px;\"><strong>HRD INTEGRATED MANPOWER SOLUTION</strong></span>\r\nNo. 1st Floor, Dharani Complex , \r\nNear Muthumariamman Temple ,\r\nDharga, Hosur ,\r\nTamil Nadu - 635 126.\r\n<strong>Land Line</strong> :  04344 – 276172\r\n<strong>Mobile</strong>    : +91 9362310019, +91 9626785460\r\n<strong>Email</strong>     : hrdintegratedman@gmail.com\r\n<strong>Email</strong>     : sivanannamalai1975@gmail.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2016-03-11 12:02:15", "2016-03-11 12:02:15", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("902", "1", "2016-03-11 12:03:03", "2016-03-11 12:03:03", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform:uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or specialty.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We do the work the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides4.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is a recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» Every person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 12:03:03", "2016-03-11 12:03:03", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("904", "1", "2016-03-11 12:14:42", "2016-03-11 12:14:42", "", "contact-us", "", "inherit", "open", "open", "", "contact-us-3", "", "", "2016-03-11 12:14:42", "2016-03-11 12:14:42", "", "304", "http://hrd.softons.cu.cc/wp-content/uploads/2014/12/contact-us.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("906", "1", "2016-03-11 12:15:10", "2016-03-11 12:15:10", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/contact-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Enquiry Now </span></p> \r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224E3; font-size:35px; line-height:12px;\">Reach Us </span></p> \r\n\r\n<span style=\"font-size:20px;\"><strong>HRD INTEGRATED MANPOWER SOLUTION</strong></span>\r\nNo. 1st Floor, Dharani Complex , \r\nNear Muthumariamman Temple ,\r\nDharga, Hosur ,\r\nTamil Nadu - 635 126.\r\n<strong>Land Line</strong> :  04344 – 276172\r\n<strong>Mobile</strong>    : +91 9362310019, +91 9626785460\r\n<strong>Email</strong>     : hrdintegratedman@gmail.com\r\n<strong>Email</strong>     : sivanannamalai1975@gmail.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2016-03-11 12:15:10", "2016-03-11 12:15:10", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("907", "1", "2016-03-11 12:18:09", "2016-03-11 12:18:09", "", "Slides4", "", "inherit", "open", "open", "", "slides4-2", "", "", "2016-03-11 12:18:09", "2016-03-11 12:18:09", "", "22", "http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("915", "1", "2016-03-11 12:48:04", "2016-03-11 12:48:04", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform:uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or specialty.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We do the work the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n&raquo; 	M/s. Micro Labs Ltd., Unit I,\r\n&raquo;         M/s  Green Vision Technology\r\n&raquo; 	M/s. KEF Infrastructure India Pvt. td., \r\n&raquo; 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n&raquo; 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n&raquo; 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n&raquo; 	M/s.Ritway Packages Pvt. Ltd.,\r\n&raquo; 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n&raquo; 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s.Sobha Developers .Ltd, Bommasandra.\r\n»	M/s.Sobha Developers Ltd., Rajasthan\r\n»	M/s.Mukundan Diary Products Ltd.,\r\n»	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 12:48:04", "2016-03-11 12:48:04", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("909", "1", "2016-03-11 12:24:17", "2016-03-11 12:24:17", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform:uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or specialty.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We do the work the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n&raquo; 	M/s. Micro Labs Ltd., Unit I,\r\n&raquo;         M/s  Green Vision Technology\r\n&raquo; 	M/s. KEF Infrastructure India Pvt. td., \r\n&raquo; 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n&raquo; 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n&raquo; 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n&raquo; 	M/s.Ritway Packages Pvt. Ltd.,\r\n&raquo; 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n&raquo; 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s.Sobha Developers .Ltd, Bommasandra.\r\n»	M/s.Sobha Developers Ltd., Rajasthan\r\n»	M/s.Mukundan Diary Products Ltd.,\r\n»	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 12:24:17", "2016-03-11 12:24:17", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("908", "1", "2016-03-11 12:21:06", "2016-03-11 12:21:06", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform:uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or specialty.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We do the work the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n&amp;raqu;	M/s. Micro Labs Ltd., Unit I,\r\n&amp;raqu;      M/s  Green Vision Technology\r\n&amp;raqu; 	M/s. KEF Infrastructure India Pvt. td., \r\n&amp;raqu; 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n&amp;raqu; 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n&amp;raqu; 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n&amp;raqu; 	M/s.Ritway Packages Pvt. Ltd.,\r\n&amp;raqu;	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n&amp;raqu; 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#1e73be; font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s.Sobha Developers .Ltd, Bommasandra.\r\n»	M/s.Sobha Developers Ltd., Rajasthan\r\n»	M/s.Mukundan Diary Products Ltd.,\r\n»	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 12:21:06", "2016-03-11 12:21:06", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("914", "1", "2016-03-11 12:46:56", "2016-03-11 12:46:56", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform:uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or specialty.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We do the work the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n&raquo; 	M/s. Micro Labs Ltd., Unit I,\r\n&raquo;         M/s  Green Vision Technology\r\n&raquo; 	M/s. KEF Infrastructure India Pvt. td., \r\n&raquo; 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n&raquo; 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n&raquo; 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n&raquo; 	M/s.Ritway Packages Pvt. Ltd.,\r\n&raquo; 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n&raquo; 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s.Sobha Developers .Ltd, Bommasandra.\r\n»	M/s.Sobha Developers Ltd., Rajasthan\r\n»	M/s.Mukundan Diary Products Ltd.,\r\n»	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 12:46:56", "2016-03-11 12:46:56", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("910", "1", "2016-03-11 12:26:36", "2016-03-11 12:26:36", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform:uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or specialty.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We do the work the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n&raquo; 	M/s. Micro Labs Ltd., Unit I,\r\n&raquo;         M/s  Green Vision Technology\r\n&raquo; 	M/s. KEF Infrastructure India Pvt. td., \r\n&raquo; 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n&raquo; 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n&raquo; 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n&raquo; 	M/s.Ritway Packages Pvt. Ltd.,\r\n&raquo; 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n&raquo; 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s.Sobha Developers .Ltd, Bommasandra.\r\n»	M/s.Sobha Developers Ltd., Rajasthan\r\n»	M/s.Mukundan Diary Products Ltd.,\r\n»	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 12:26:36", "2016-03-11 12:26:36", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("911", "1", "2016-03-11 12:28:02", "2016-03-11 12:28:02", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform:uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or specialty.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We do the work the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n&raquo; 	M/s. Micro Labs Ltd., Unit I,\r\n&raquo;         M/s  Green Vision Technology\r\n&raquo; 	M/s. KEF Infrastructure India Pvt. td., \r\n&raquo; 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n&raquo; 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n&raquo; 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n&raquo; 	M/s.Ritway Packages Pvt. Ltd.,\r\n&raquo; 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n&raquo; 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s.Sobha Developers .Ltd, Bommasandra.\r\n»	M/s.Sobha Developers Ltd., Rajasthan\r\n»	M/s.Mukundan Diary Products Ltd.,\r\n»	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 12:28:02", "2016-03-11 12:28:02", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("912", "1", "2016-03-11 12:29:13", "2016-03-11 12:29:13", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform:uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or specialty.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We do the work the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n&raquo; 	M/s. Micro Labs Ltd., Unit I,\r\n&raquo;         M/s  Green Vision Technology\r\n&raquo; 	M/s. KEF Infrastructure India Pvt. td., \r\n&raquo; 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n&raquo; 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n&raquo; 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n&raquo; 	M/s.Ritway Packages Pvt. Ltd.,\r\n&raquo; 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n&raquo; 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s.Sobha Developers .Ltd, Bommasandra.\r\n»	M/s.Sobha Developers Ltd., Rajasthan\r\n»	M/s.Mukundan Diary Products Ltd.,\r\n»	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 12:29:13", "2016-03-11 12:29:13", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("913", "1", "2016-03-11 12:31:10", "2016-03-11 12:31:10", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform:uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or specialty.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We do the work the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n&raquo; 	M/s. Micro Labs Ltd., Unit I,\r\n&raquo;         M/s  Green Vision Technology\r\n&raquo; 	M/s. KEF Infrastructure India Pvt. td., \r\n&raquo; 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n&raquo; 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n&raquo; 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n&raquo; 	M/s.Ritway Packages Pvt. Ltd.,\r\n&raquo; 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n&raquo; 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s.Sobha Developers .Ltd, Bommasandra.\r\n»	M/s.Sobha Developers Ltd., Rajasthan\r\n»	M/s.Mukundan Diary Products Ltd.,\r\n»	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 12:31:10", "2016-03-11 12:31:10", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("916", "1", "2016-03-11 12:56:06", "2016-03-11 12:56:06", "", "Get_Started_Button-2", "", "inherit", "open", "open", "", "get_started_button-2", "", "", "2016-03-11 12:56:06", "2016-03-11 12:56:06", "", "22", "http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("924", "1", "2016-03-14 04:20:32", "2016-03-14 04:20:32", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or specialty.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We do the work the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s.Sobha Developers .Ltd, Bommasandra.\r\n»	M/s.Sobha Developers Ltd., Rajasthan\r\n»	M/s.Mukundan Diary Products Ltd.,\r\n»	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 04:20:32", "2016-03-14 04:20:32", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("920", "1", "2016-03-11 13:03:03", "2016-03-11 13:03:03", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or specialty.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We do the work the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n&raquo; 	M/s. Micro Labs Ltd., Unit I,\r\n&raquo;         M/s  Green Vision Technology\r\n&raquo; 	M/s. KEF Infrastructure India Pvt. td., \r\n&raquo; 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n&raquo; 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n&raquo; 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n&raquo; 	M/s.Ritway Packages Pvt. Ltd.,\r\n&raquo; 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n&raquo; 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s.Sobha Developers .Ltd, Bommasandra.\r\n»	M/s.Sobha Developers Ltd., Rajasthan\r\n»	M/s.Mukundan Diary Products Ltd.,\r\n»	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 13:03:03", "2016-03-11 13:03:03", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("917", "1", "2016-03-11 12:58:44", "2016-03-11 12:58:44", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1> <a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\"><img class=\"alignnone size-full wp-image-916\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\"  align=\"right\" border=\"0\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or specialty.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We do the work the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n&raquo; 	M/s. Micro Labs Ltd., Unit I,\r\n&raquo;         M/s  Green Vision Technology\r\n&raquo; 	M/s. KEF Infrastructure India Pvt. td., \r\n&raquo; 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n&raquo; 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n&raquo; 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n&raquo; 	M/s.Ritway Packages Pvt. Ltd.,\r\n&raquo; 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n&raquo; 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s.Sobha Developers .Ltd, Bommasandra.\r\n»	M/s.Sobha Developers Ltd., Rajasthan\r\n»	M/s.Mukundan Diary Products Ltd.,\r\n»	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 12:58:44", "2016-03-11 12:58:44", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("918", "1", "2016-03-11 12:59:20", "2016-03-11 12:59:20", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1> <a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\"><img class=\"alignnone size-full wp-image-916\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\"  align=\"right\" border=\"0\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or specialty.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We do the work the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n&raquo; 	M/s. Micro Labs Ltd., Unit I,\r\n&raquo;         M/s  Green Vision Technology\r\n&raquo; 	M/s. KEF Infrastructure India Pvt. td., \r\n&raquo; 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n&raquo; 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n&raquo; 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n&raquo; 	M/s.Ritway Packages Pvt. Ltd.,\r\n&raquo; 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n&raquo; 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s.Sobha Developers .Ltd, Bommasandra.\r\n»	M/s.Sobha Developers Ltd., Rajasthan\r\n»	M/s.Mukundan Diary Products Ltd.,\r\n»	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 12:59:20", "2016-03-11 12:59:20", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("919", "1", "2016-03-11 13:01:25", "2016-03-11 13:01:25", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\"><img class=\"alignnone size-full wp-image-916\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or specialty.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We do the work the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n&raquo; 	M/s. Micro Labs Ltd., Unit I,\r\n&raquo;         M/s  Green Vision Technology\r\n&raquo; 	M/s. KEF Infrastructure India Pvt. td., \r\n&raquo; 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n&raquo; 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n&raquo; 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n&raquo; 	M/s.Ritway Packages Pvt. Ltd.,\r\n&raquo; 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n&raquo; 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s.Sobha Developers .Ltd, Bommasandra.\r\n»	M/s.Sobha Developers Ltd., Rajasthan\r\n»	M/s.Mukundan Diary Products Ltd.,\r\n»	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 13:01:25", "2016-03-11 13:01:25", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("922", "1", "2016-03-14 04:16:32", "2016-03-14 04:16:32", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/contact-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Enquiry Now </span></p> \r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224E3; font-size:35px; line-height:12px;\">Reach Us </span></p> \r\n\r\n<span style=\"font-size:10px;\"><strong>HRD INTEGRATED MANPOWER SOLUTION</strong></span>\r\nNo. 1st Floor, Dharani Complex , \r\nNear Muthumariamman Temple ,\r\nDharga, Hosur ,\r\nTamil Nadu - 635 126.\r\n<strong>Land Line</strong> :  04344 – 276172\r\n<strong>Mobile</strong>    : +91 9362310019, +91 9626785460\r\n<strong>Email</strong>     : hrdintegratedman@gmail.com\r\n<strong>Email</strong>     : sivanannamalai1975@gmail.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2016-03-14 04:16:32", "2016-03-14 04:16:32", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("923", "1", "2016-03-14 04:17:13", "2016-03-14 04:17:13", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/contact-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Enquiry Now </span></p> \r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224E3; font-size:35px; line-height:12px;\">Reach Us </span></p> \r\n\r\n<span style=\"font-size:15px;\"><strong>HRD INTEGRATED MANPOWER SOLUTION</strong></span>\r\nNo. 1st Floor, Dharani Complex , \r\nNear Muthumariamman Temple ,\r\nDharga, Hosur ,\r\nTamil Nadu - 635 126.\r\n<strong>Land Line</strong> :  04344 – 276172\r\n<strong>Mobile</strong>    : +91 9362310019, +91 9626785460\r\n<strong>Email</strong>     : hrdintegratedman@gmail.com\r\n<strong>Email</strong>     : sivanannamalai1975@gmail.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2016-03-14 04:17:13", "2016-03-14 04:17:13", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("925", "1", "2016-03-14 04:21:18", "2016-03-14 04:21:18", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We do the work the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s.Sobha Developers .Ltd, Bommasandra.\r\n»	M/s.Sobha Developers Ltd., Rajasthan\r\n»	M/s.Mukundan Diary Products Ltd.,\r\n»	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 04:21:18", "2016-03-14 04:21:18", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("926", "1", "2016-03-14 04:33:29", "2016-03-14 04:33:29", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We do the work the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify\";> We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s.Sobha Developers .Ltd, Bommasandra.\r\n»	M/s.Sobha Developers Ltd., Rajasthan\r\n»	M/s.Mukundan Diary Products Ltd.,\r\n»	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 04:33:29", "2016-03-14 04:33:29", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("927", "1", "2016-03-14 04:36:21", "2016-03-14 04:36:21", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify ;\" > We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We do the work the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify\";> We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s.Sobha Developers .Ltd, Bommasandra.\r\n»	M/s.Sobha Developers Ltd., Rajasthan\r\n»	M/s.Mukundan Diary Products Ltd.,\r\n»	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 04:36:21", "2016-03-14 04:36:21", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("928", "1", "2016-03-14 04:37:57", "2016-03-14 04:37:57", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify ;\" > We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We do the work the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify\" ;\"> We don\'t simply give services to customers; we tend to foster a long-run relationship that is close & confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s.Sobha Developers .Ltd, Bommasandra.\r\n»	M/s.Sobha Developers Ltd., Rajasthan\r\n»	M/s.Mukundan Diary Products Ltd.,\r\n»	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 04:37:57", "2016-03-14 04:37:57", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("929", "1", "2016-03-14 04:39:41", "2016-03-14 04:39:41", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify ;\">&raquo; We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]» We offer 100% excellence &amp; reliable service\r\n» We have highly experienced Workers &amp; Staff\r\n» We do the work the customer is 100% satisfied\r\n» We offer our best services anytime &amp; anywhere Hosur &amp; Bangalore[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify\" ;\"> We don\'t simply give services to customers; we tend to foster a long-run relationship that is close & confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s.Sobha Developers .Ltd, Bommasandra.\r\n»	M/s.Sobha Developers Ltd., Rajasthan\r\n»	M/s.Mukundan Diary Products Ltd.,\r\n»	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 04:39:41", "2016-03-14 04:39:41", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("930", "1", "2016-03-14 05:03:24", "2016-03-14 05:03:24", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify ;\">&raquo; We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]»  100% customer Satisfactions\r\n»  highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify\" ;\"=\"\"> We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s.Sobha Developers .Ltd, Bommasandra.\r\n»	M/s.Sobha Developers Ltd., Rajasthan\r\n»	M/s.Mukundan Diary Products Ltd.,\r\n»	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 05:03:24", "2016-03-14 05:03:24", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("932", "1", "2016-03-14 05:06:25", "2016-03-14 05:06:25", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify ;\">&raquo; We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:left\" ;>\r\n\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify\" ;\"=\"\"> We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 05:06:25", "2016-03-14 05:06:25", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("931", "1", "2016-03-14 05:05:45", "2016-03-14 05:05:45", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify ;\">&raquo; We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style =\"text-align:left\";>\r\n\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify\" ;\"=\"\"> We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s.Sobha Developers .Ltd, Bommasandra.\r\n»	M/s.Sobha Developers Ltd., Rajasthan\r\n»	M/s.Mukundan Diary Products Ltd.,\r\n»	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 05:05:45", "2016-03-14 05:05:45", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("934", "1", "2016-03-14 05:09:47", "2016-03-14 05:09:47", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify ;\">&raquo; We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify\" ;\"=\"\"> We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 05:09:47", "2016-03-14 05:09:47", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("933", "1", "2016-03-14 05:06:56", "2016-03-14 05:06:56", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify ;\">&raquo; We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left\" ;=\"\">\r\n\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify\" ;\"=\"\"> We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 05:06:56", "2016-03-14 05:06:56", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("935", "1", "2016-03-14 05:10:46", "2016-03-14 05:10:46", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify ;\">&raquo; We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Why our service\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:left;\">\r\n\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify\" ;\"=\"\"> We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 05:10:46", "2016-03-14 05:10:46", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("937", "1", "2016-03-14 05:13:55", "2016-03-14 05:13:55", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify ;\">&raquo; We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center; \">Why our service\r\n\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify\" ;\"=\"\"> We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 05:13:55", "2016-03-14 05:13:55", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("938", "1", "2016-03-14 05:15:00", "2016-03-14 05:15:00", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify ;\">&raquo; We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; \">Why our service</h2>\r\n\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify\" ;\"=\"\"> We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 05:15:00", "2016-03-14 05:15:00", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("939", "1", "2016-03-14 05:17:08", "2016-03-14 05:17:08", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify ;\">&raquo; We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-align:center; \">Why our service</h2>\r\n<p style= \"text-align:left; \">\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify\" ;\"=\"\"> We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 05:17:08", "2016-03-14 05:17:08", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("940", "1", "2016-03-14 05:19:06", "2016-03-14 05:19:06", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify ;\">&raquo; We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-align:center; \">Why our service</h2>\r\n<p style=\"text-align:left; \">\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line  </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify\" ;\"=\"\"> We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 05:19:06", "2016-03-14 05:19:06", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("941", "1", "2016-03-14 05:20:10", "2016-03-14 05:20:10", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify ;\">&raquo; We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-align:center; font:size: 20px;\">Why our service</h2>\r\n<p style=\"text-align:left; \">\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line  </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify\" ;\"=\"\"> We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 05:20:10", "2016-03-14 05:20:10", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("942", "1", "2016-03-14 05:23:46", "2016-03-14 05:23:46", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify ;\">&raquo; We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-align:center; font:size: 15px;\">Why our service</h2>\r\n<p style=\"text-align:left; \">\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line  </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify\" ;\"=\"\"> We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 05:23:46", "2016-03-14 05:23:46", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("943", "1", "2016-03-14 05:24:27", "2016-03-14 05:24:27", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify ;\">&raquo; We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-align:center; font:size: 10px;\">Why our service</h2>\r\n<p style=\"text-align:left; \">\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line  </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify\" ;\"=\"\"> We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 05:24:27", "2016-03-14 05:24:27", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("944", "1", "2016-03-14 05:25:12", "2016-03-14 05:25:12", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"What We Do ?\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify ;\">&raquo; We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-align:center; font:size: 5px;\">Why our service</h2>\r\n<p style=\"text-align:left; \">\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line  </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Commitment\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:justify\" ;\"=\"\"> We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 05:25:12", "2016-03-14 05:25:12", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("945", "1", "2016-03-14 05:27:49", "2016-03-14 05:27:49", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">What We Do ?</h2>\r\n<p style=\"text-align:justify ;\">» We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-align:center; font:size: 5px;\">Why our service</h2>\r\n<p style=\"text-align:left; \">\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line  </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">Commitment</h2>\r\n<p style=\"text-align:justify\" ;\"> We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 05:27:49", "2016-03-14 05:27:49", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("946", "1", "2016-03-14 05:29:48", "2016-03-14 05:29:48", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">What We Do ?</h2>\r\n<p style=\"text-align:justify ;\">» We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-align:center; font:size: 5px;\">Why our service</h2>\r\n<p style=\"text-align:left; \">\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line  </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">Commitment</h2>\r\n<p style=\"text-align:justify\" ;\"> &raquo; We don\'t simply give services to customers; we tend to foster a long-run relationship that is close &amp; confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 05:29:48", "2016-03-14 05:29:48", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("947", "1", "2016-03-14 05:30:46", "2016-03-14 05:30:46", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">What We Do ?</h2>\r\n<p style=\"text-align:justify ;\">» We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-align:center; font:size: 5px;\">Why our service</h2>\r\n<p style=\"text-align:left; \">\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line  </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">Commitment</h2>\r\n<p style=\"text-align:justify\" ;\"=\"\"> » We don\'t simply give services to customers; we tend to foster a long-run relationship that is close & confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 05:30:46", "2016-03-14 05:30:46", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("948", "1", "2016-03-14 05:34:06", "2016-03-14 05:34:06", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">What We Do ?</h2>\r\n<p style=\"text-align:justify ;\">» We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-align:center; font:size: 5px;\">Why our service</h2>\r\n<p style=\"text-align:left; \">\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line  </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">Commitment</h2>\r\n<p style=\"text-align:justify\" ;\"=\"\"> » We don\'t simply give services to customers; we tend to foster a long-run relationship that is close & confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:12px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s.Sobha Developers .Ltd, Bommasandra.\r\n»	M/s.Sobha Developers Ltd., Rajasthan\r\n»	M/s.Mukundan Diary Products Ltd.,\r\n»	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 05:34:06", "2016-03-14 05:34:06", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1077", "1", "2016-03-19 06:14:56", "2016-03-19 06:14:56", "", "LOGO-HRD", "", "inherit", "open", "open", "", "logo-hrd", "", "", "2016-03-19 06:14:56", "2016-03-19 06:14:56", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2016/03/LOGO-HRD.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("949", "1", "2016-03-14 09:55:34", "2016-03-14 09:55:34", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">What We Do ?</h2>\r\n<p style=\"text-align:justify ;\">» We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-align:center; font:size: 5px;\">Why our service</h2>\r\n<p style=\"text-align:left; \">\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line  </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">Commitment</h2>\r\n<p style=\"text-align:justify\" ;\"=\"\"> » We don\'t simply give services to customers; we tend to foster a long-run relationship that is close & confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:20px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s.Sobha Developers .Ltd, Bommasandra.\r\n»	M/s.Sobha Developers Ltd., Rajasthan\r\n»	M/s.Mukundan Diary Products Ltd.,\r\n»	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 09:55:34", "2016-03-14 09:55:34", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("950", "1", "2016-03-14 09:57:09", "2016-03-14 09:57:09", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">What We Do ?</h2>\r\n<p style=\"text-align:justify ;\">» We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-align:center; font:size: 5px;\">Why our service</h2>\r\n<p style=\"text-align:left; \">\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line  </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">Commitment</h2>\r\n<p style=\"text-align:justify\" ;\"=\"\"> » We don\'t simply give services to customers; we tend to foster a long-run relationship that is close & confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:22px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s.Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s.Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s.Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s.ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s.Sobha Developers .Ltd, Bommasandra.\r\n»	M/s.Sobha Developers Ltd., Rajasthan\r\n»	M/s.Mukundan Diary Products Ltd.,\r\n»	M/s.Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s.Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 09:57:09", "2016-03-14 09:57:09", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("951", "1", "2016-03-14 10:21:35", "2016-03-14 10:21:35", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">What we do ?</h2>\r\n<p style=\"text-align:justify ;\">» We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-align:center; font:size: 5px;\">Why our service</h2>\r\n<p style=\"text-align:left; \">\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line  </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">Commitment</h2>\r\n<p style=\"text-align:justify\" ;\"=\"\"> » We don\'t simply give services to customers; we tend to foster a long-run relationship that is close & confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:22px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s  Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. td., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s. Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s. Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s. Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s. ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s. Sobha Developers .Ltd, Bommasandra.\r\n»	M/s. Sobha Developers Ltd., Rajasthan\r\n»	M/s. Mukundan Diary Products Ltd.,\r\n»	M/s. Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s. Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 10:21:35", "2016-03-14 10:21:35", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("952", "1", "2016-03-14 10:22:41", "2016-03-14 10:22:41", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">What we do ?</h2>\r\n<p style=\"text-align:justify ;\">» We square measure here to allow you the unwavering help that you just wants colossal info of qualified candidates and ensures the provision of appropriate candidates for any given business or speciality.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-align:center; font:size: 5px;\">Why our service</h2>\r\n<p style=\"text-align:left; \">\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line  </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">Commitment</h2>\r\n<p style=\"text-align:justify\" ;\"=\"\"> » We don\'t simply give services to customers; we tend to foster a long-run relationship that is close & confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:22px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s. Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. Ltd., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s. Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s. Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s. Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s. ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s. Sobha Developers .Ltd, Bommasandra.\r\n»	M/s. Sobha Developers Ltd., Rajasthan\r\n»	M/s. Mukundan Diary Products Ltd.,\r\n»	M/s. Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s. Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 10:22:41", "2016-03-14 10:22:41", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1085", "1", "2016-03-21 12:19:42", "2016-03-21 12:19:42", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides21.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">What we do ?</h2>\r\n<p style=\"text-align:justify ;\">»  We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-align:center; font:size: 5px;\">Why our service</h2>\r\n<p style=\"text-align:left; \">\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line  </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">Commitment</h2>\r\n<p style=\"text-align:justify\" ;\"=\"\"> » We don\'t simply give services to customers; we tend to foster a long-run relationship that is close & confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:22px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s. Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. Ltd., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s. Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s. Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s. Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s. ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s. Sobha Developers .Ltd, Bommasandra.\r\n»	M/s. Sobha Developers Ltd., Rajasthan\r\n»	M/s. Mukundan Diary Products Ltd.,\r\n»	M/s. Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s. Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-21 12:19:42", "2016-03-21 12:19:42", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("955", "1", "2016-03-14 11:52:06", "2016-03-14 11:52:06", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">What we do ?</h2>\r\n<p style=\"text-align:justify ;\">»  We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-align:center; font:size: 5px;\">Why our service</h2>\r\n<p style=\"text-align:left; \">\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line  </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">Commitment</h2>\r\n<p style=\"text-align:justify\" ;\"=\"\"> » We don\'t simply give services to customers; we tend to foster a long-run relationship that is close & confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:22px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s. Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. Ltd., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s. Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s. Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s. Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s. ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s. Sobha Developers .Ltd, Bommasandra.\r\n»	M/s. Sobha Developers Ltd., Rajasthan\r\n»	M/s. Mukundan Diary Products Ltd.,\r\n»	M/s. Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s. Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 11:52:06", "2016-03-14 11:52:06", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("954", "1", "2016-03-14 11:45:38", "2016-03-14 11:45:38", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">What we do ?</h2>\r\n<p style=\"text-align:justify ;\">»  We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. We have a versatile databank, which is being updated on continuous basis through advertisement and professional contact. </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-align:center; font:size: 5px;\">Why our service</h2>\r\n<p style=\"text-align:left; \">\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line  </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">Commitment</h2>\r\n<p style=\"text-align:justify\" ;\"=\"\"> » We don\'t simply give services to customers; we tend to foster a long-run relationship that is close & confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:22px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s. Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. Ltd., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s. Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s. Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s. Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s. ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s. Sobha Developers .Ltd, Bommasandra.\r\n»	M/s. Sobha Developers Ltd., Rajasthan\r\n»	M/s. Mukundan Diary Products Ltd.,\r\n»	M/s. Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s. Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 11:45:38", "2016-03-14 11:45:38", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("953", "1", "2016-03-14 11:44:38", "2016-03-14 11:44:38", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">What we do ?</h2>\r\n<p style=\"text-align:justify ;\">» Our company is operating actively from its base location/office in Hosur. We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. We have a versatile databank, which is being updated on continuous basis through advertisement and professional contact. </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-align:center; font:size: 5px;\">Why our service</h2>\r\n<p style=\"text-align:left; \">\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line  </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">Commitment</h2>\r\n<p style=\"text-align:justify\" ;\"=\"\"> » We don\'t simply give services to customers; we tend to foster a long-run relationship that is close & confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:22px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s. Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. Ltd., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s. Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s. Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s. Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s. ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s. Sobha Developers .Ltd, Bommasandra.\r\n»	M/s. Sobha Developers Ltd., Rajasthan\r\n»	M/s. Mukundan Diary Products Ltd.,\r\n»	M/s. Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s. Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-14 11:44:38", "2016-03-14 11:44:38", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("956", "1", "2016-03-14 11:58:34", "2016-03-14 11:58:34", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/contact-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Enquiry Now </span></p> \r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224E3; font-size:35px; line-height:12px;\">Reach Us </span></p> \r\n\r\n<span style=\"font-size:15px;\"><strong>HRD INTEGRATED MANPOWER SOLUTION</strong></span>\r\nNo. 1st Floor, Dharani Complex , \r\nNear Muthumariamman Temple ,\r\nDharga, Hosur ,\r\nTamil Nadu - 635 126.\r\n<strong>Land Line</strong> :  04344 – 276172\r\n<strong>Mobile</strong>    : +91 9362310019, +91 9626785460\r\n<strong>Email</strong>     : hrdintegratedman@gmail.com,\r\n                             sivanannamalai1975@gmail.com.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2016-03-14 11:58:34", "2016-03-14 11:58:34", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("957", "1", "2016-03-14 11:59:18", "2016-03-14 11:59:18", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/contact-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Enquiry Now </span></p> \r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224E3; font-size:35px; line-height:12px;\">Reach Us </span></p> \r\n\r\n<span style=\"font-size:15px;\"><strong>HRD INTEGRATED MANPOWER SOLUTION</strong></span>\r\nNo. 1st Floor, Dharani Complex , \r\nNear Muthumariamman Temple ,\r\nDharga, Hosur ,\r\nTamil Nadu - 635 126.\r\n<strong>Land Line</strong> :  04344 – 276172\r\n<strong>Mobile</strong>    : +91 9362310019, +91 9626785460\r\n<strong>Email</strong>     : hrdintegratedman@gmail.com,\r\n                              \r\n                             sivanannamalai1975@gmail.com.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2016-03-14 11:59:18", "2016-03-14 11:59:18", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("959", "1", "2016-03-14 12:01:59", "2016-03-14 12:01:59", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/contact-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Enquiry Now </span></p> \r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224E3; font-size:35px; line-height:12px;\">Reach Us </span></p> \r\n\r\n<span style=\"font-size:15px;\"><strong>HRD INTEGRATED MANPOWER SOLUTION</strong></span>\r\nNo. 1st Floor, Dharani Complex , \r\nNear Muthumariamman Temple ,\r\nDharga, Hosur ,\r\nTamil Nadu - 635 126.\r\n<strong>Land Line</strong> :  04344 – 276172\r\n<strong>Mobile</strong>    : +91 9362310019, +91 9626785460\r\n<strong>Email</strong>     : hrdintegratedman@gmail.com,\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;sivanannamalai1975@gmail.com.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2016-03-14 12:01:59", "2016-03-14 12:01:59", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("958", "1", "2016-03-14 12:01:27", "2016-03-14 12:01:27", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/contact-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Enquiry Now </span></p> \r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224E3; font-size:35px; line-height:12px;\">Reach Us </span></p> \r\n\r\n<span style=\"font-size:15px;\"><strong>HRD INTEGRATED MANPOWER SOLUTION</strong></span>\r\nNo. 1st Floor, Dharani Complex , \r\nNear Muthumariamman Temple ,\r\nDharga, Hosur ,\r\nTamil Nadu - 635 126.\r\n<strong>Land Line</strong> :  04344 – 276172\r\n<strong>Mobile</strong>    : +91 9362310019, +91 9626785460\r\n<strong>Email</strong>     : hrdintegratedman@gmail.com,\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;sivanannamalai1975@gmail.com.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2016-03-14 12:01:27", "2016-03-14 12:01:27", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("960", "1", "2016-03-14 12:02:25", "2016-03-14 12:02:25", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/contact-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Enquiry Now </span></p> \r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224E3; font-size:35px; line-height:12px;\">Reach Us </span></p> \r\n\r\n<span style=\"font-size:15px;\"><strong>HRD INTEGRATED MANPOWER SOLUTION</strong></span>\r\nNo. 1st Floor, Dharani Complex , \r\nNear Muthumariamman Temple ,\r\nDharga, Hosur ,\r\nTamil Nadu - 635 126.\r\n<strong>Land Line</strong> :  04344 – 276172\r\n<strong>Mobile</strong>    : +91 9362310019, +91 9626785460\r\n<strong>Email</strong>     : hrdintegratedman@gmail.com,\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;sivanannamalai1975@gmail.com.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2016-03-14 12:02:25", "2016-03-14 12:02:25", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("961", "1", "2016-03-14 12:02:54", "2016-03-14 12:02:54", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/contact-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Enquiry Now </span></p> \r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224E3; font-size:35px; line-height:12px;\">Reach Us </span></p> \r\n\r\n<span style=\"font-size:15px;\"><strong>HRD INTEGRATED MANPOWER SOLUTION</strong></span>\r\nNo. 1st Floor, Dharani Complex , \r\nNear Muthumariamman Temple ,\r\nDharga, Hosur ,\r\nTamil Nadu - 635 126.\r\n<strong>Land Line</strong> :  04344 – 276172\r\n<strong>Mobile</strong>    : +91 9362310019, +91 9626785460\r\n<strong>Email</strong>     : hrdintegratedman@gmail.com,\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;sivanannamalai1975@gmail.com.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2016-03-14 12:02:54", "2016-03-14 12:02:54", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1053", "1", "2016-03-18 04:48:16", "2016-03-18 04:48:16", "", "Liscensing", "", "inherit", "open", "open", "", "1052-revision-v1", "", "", "2016-03-18 04:48:16", "2016-03-18 04:48:16", "", "1052", "http://hrd.softons.cu.cc/1052-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1104", "1", "2016-03-22 11:44:22", "2016-03-22 11:44:22", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1 style=\"color:#8224e3;\">Manpower Provider</h1>\r\n\r\n<p style=\"text-align:justify;\">We are one of the leading manpower service providers, engaged in all sectors such as Automobiles, Engineering, Construction, Chemical, Pharma, Diary, Electronics and Hospitality Services. Our organization has gained huge appreciation from the clients due to its highly efficient and professionally managed services that are supported by timely execution and high quality standards.</p>\r\n\r\n\r\n<p style=\"text-align:justify;\"> We provide Fresher/Experienced trained manpower to our clients as per the specific requirement of the client. We provide equipment ready manpower as per the specifications received from Client on short notice. These manpower helps the clients to reduce operations cost and thus directly helps in short or long term skilled resources requirements.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"color:#8224e3;\">We provide following type of manpower with equipment support to our clients:</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Accounts\r\n» Admin\r\n» Human resource\r\n» Engineering[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Maintenance\r\n» Supervisor\r\n» Fitters\r\n» Welders[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Insulators\r\n» Steel Fixtures\r\n» Carpenter\r\n» Skilled and unskilled labour[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides101.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Manpower Provider", "", "inherit", "open", "open", "", "1002-revision-v1", "", "", "2016-03-22 11:44:22", "2016-03-22 11:44:22", "", "1002", "http://hrd.softons.cu.cc/1002-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1074", "1", "2016-03-18 06:32:18", "2016-03-18 06:32:18", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1 style=\"color:#8224e3;\">Manpower Provider</h1>\r\n\r\n<p style=\"text-align:justify;\">We are one of the leading service providers, engaged in providing different kinds of services such as manpower consultancy, overseas manpower consultant, civil construction services, building contractor and civil maintenance services. Our organization has gained huge appreciation from the clients due to its highly efficient and professionally managed services that are supported by timely execution and high quality standards.</p>\r\n\r\n\r\n<p style=\"text-align:justify;\"> We provide Fresher/Experienced trained manpower to our clients as per the specific requirement of the client. We provide equipment ready manpower as per the specifications received from Client on short notice. These manpower helps the clients to reduce operations cost and thus directly helps in short or long term skilled resources requirements.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"color:#8224e3;\">We provide following type of manpower with equipment support to our clients:</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Accounting / Auditing\r\n»  Administration\r\n»  Advertising\r\n»  Agriculture\r\n»  Aviation/Airline\r\n»  Architecture\r\n»  Air Conditioning\r\n»  Automotive\r\n»  Banking &amp; Finance\r\n»  Biotechnology[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Business Support\r\n»  Computer / Software\r\n»  Computer / Hardware\r\n»  Construction / Civil Engineering\r\n»  Consulting Services\r\n»  Contract / Purchasing\r\n»  Distribution &amp; Logistics\r\n»  Education Training\r\n»  Energy &amp; Power\r\n»  Engineering\r\n»  Entertainment[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Health Care\r\n»  Hospitality\r\n»  Human Resources\r\n»  Insurance\r\n»  FMCG\r\n»  Graphic Designing\r\n»  Government Sector\r\n»  Information Technology (IT)\r\n»  Security[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides101.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Manpower Provider", "", "inherit", "open", "open", "", "1002-revision-v1", "", "", "2016-03-18 06:32:18", "2016-03-18 06:32:18", "", "1002", "http://hrd.softons.cu.cc/1002-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1052", "1", "2016-03-18 04:48:16", "2016-03-18 04:48:16", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: left;\"><span style=\"color: #8224e3; font-size: 30px; line-height: 12px;\">Licensing / Statutory </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens6.jpg\" alt=\"licens6\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1061\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens5.jpg\" alt=\"licens5\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1060\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#c1c1c1\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#c1c1c1\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens1.jpg\" alt=\"licens1\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1056\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens2.jpg\" alt=\"licens2\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1057\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#c1c1c1\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens3.jpg\" alt=\"licens3\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1058\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens4.jpg\" alt=\"licens4\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1059\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Liscensing", "", "publish", "open", "open", "", "liscensing", "", "", "2016-03-18 10:35:34", "2016-03-18 10:35:34", "", "0", "http://hrd.softons.cu.cc/?page_id=1052", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("968", "1", "2016-03-16 04:53:17", "2016-03-16 04:53:17", "", "About-us", "", "inherit", "open", "open", "", "about-us-5", "", "", "2016-03-16 04:53:17", "2016-03-16 04:53:17", "", "337", "http://hrd.softons.cu.cc/wp-content/uploads/2014/12/About-us.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("973", "1", "2016-03-16 05:41:20", "2016-03-16 05:41:20", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/About-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">About Us </span></p>\r\n<p style=\"text-align: justify;\">We proudly introduce ourselves “HRD Integrated Manpower Solution” manpower supply service business has been started during June, 2011. It is  a well-established  manpower service providers in the Hosur area. Our company is operating actively from its base location/office in Hosur. We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. We have a versatile databank, which is being updated on continuous basis through advertisement and professional contact. </p>\r\n<p style=\"text-align: justify;\"><strong>We have separate strong and experienced 5 teams for the following.</strong></p>\r\n	» Administration\r\n        » Human Resources\r\n	» Marketing \r\n	» Business Associates / Site Supervisors\r\n	» Legal/Statutory.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">Currently, we have deployed around 1000 employees in our roll predominantly to the different types of companies as furnished below.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]&raquo; Automobile and Engineering Industries\r\n&raquo; Manufacturing Industries\r\n&raquo; Pharmaceutical Industries\r\n&raquo; Chemical industries \r\n&raquo; Automobile and Light Engineering industries \r\n&raquo; Foods & Dairy Farms, FMGC \r\n&raquo; Consumer Products and Process Industries\r\n&raquo; Civil / Construction companies \r\n&raquo; Electrical & Electronics Industries\r\n&raquo; Interior decoration industries etc.,\r\n&raquo; Protective Packaging Industries.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2016-03-16 05:41:20", "2016-03-16 05:41:20", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("975", "1", "2016-03-16 05:45:13", "2016-03-16 05:45:13", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/About-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">About Us </span></p>\r\n<p style=\"text-align: justify;\">We proudly introduce ourselves “HRD Integrated Manpower Solution” manpower supply service business has been started during June, 2011. It is  a well-established  manpower service providers in the Hosur area. Our company is operating actively from its base location/office in Hosur. We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. We have a versatile databank, which is being updated on continuous basis through advertisement and professional contact. </p>\r\n<p style=\"text-align: justify;\"><strong>We have separate strong and experienced 5 teams for the following.</strong></p>\r\n	» Administration\r\n        » Human Resources\r\n	» Marketing \r\n	» Business Associates / Site Supervisors\r\n	» Legal/Statutory.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">Currently, we have deployed around 1000 employees in our roll predominantly to the different types of companies as furnished below.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]&raquo; Automobile and Engineering Industries\r\n&raquo; Manufacturing Industries\r\n&raquo; Pharmaceutical Industries\r\n&raquo; Chemical industries \r\n&raquo; Automobile and Light Engineering industries \r\n&raquo; Foods & Dairy Farms, FMGC \r\n&raquo; Consumer Products and Process Industries\r\n&raquo; Civil / Construction companies \r\n&raquo; Electrical & Electronics Industries\r\n&raquo; Interior decoration industries etc.,\r\n&raquo; Protective Packaging Industries.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2016-03-16 05:45:13", "2016-03-16 05:45:13", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("974", "1", "2016-03-16 05:43:17", "2016-03-16 05:43:17", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/About-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">About Us </span></p>\r\n<p style=\"text-align: justify;\">We proudly introduce ourselves “HRD Integrated Manpower Solution” manpower supply service business has been started during June, 2011. It is  a well-established  manpower service providers in the Hosur area. Our company is operating actively from its base location/office in Hosur. We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. We have a versatile databank, which is being updated on continuous basis through advertisement and professional contact. </p>\r\n<p style=\"text-align: justify;\"><strong>We have separate strong and experienced 5 teams for the following.</strong></p>\r\n	» Administration\r\n        » Human Resources\r\n	» Marketing \r\n	» Business Associates / Site Supervisors\r\n	» Legal/Statutory.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">Currently, we have deployed around 1000 employees in our roll predominantly to the different types of companies as furnished below.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]&raquo; Automobile and Engineering Industries\r\n&raquo; Manufacturing Industries\r\n&raquo; Pharmaceutical Industries\r\n&raquo; Chemical industries \r\n&raquo; Automobile and Light Engineering industries \r\n&raquo; Foods & Dairy Farms, FMGC \r\n&raquo; Consumer Products and Process Industries\r\n&raquo; Civil / Construction companies \r\n&raquo; Electrical & Electronics Industries\r\n&raquo; Interior decoration industries etc.,\r\n&raquo; Protective Packaging Industries.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">About Us </span></p>\r\n<p style=\"text-align: justify;\">We proudly introduce ourselves “HRD Integrated Manpower Solution” manpower supply service business has been started during June, 2011. It is  a well-established  manpower service providers in the Hosur area. Our company is operating actively from its base location/office in Hosur. We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. We have a versatile databank, which is being updated on continuous basis through advertisement and professional contact. </p>\r\n<p style=\"text-align: justify;\"><strong>We have separate strong and experienced 5 teams for the following.</strong></p>\r\n	» Administration\r\n        » Human Resources\r\n	» Marketing \r\n	» Business Associates / Site Supervisors[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2016-03-16 05:43:17", "2016-03-16 05:43:17", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("976", "1", "2016-03-16 05:50:10", "2016-03-16 05:50:10", "", "manpower-graphic", "", "inherit", "open", "open", "", "manpower-graphic", "", "", "2016-03-16 05:50:10", "2016-03-16 05:50:10", "", "337", "http://hrd.softons.cu.cc/wp-content/uploads/2014/12/manpower-graphic.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("977", "1", "2016-03-16 05:50:29", "2016-03-16 05:50:29", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/About-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">About Us </span></p>\r\n<p style=\"text-align: justify;\">We proudly introduce ourselves “HRD Integrated Manpower Solution” manpower supply service business has been started during June, 2011. It is  a well-established  manpower service providers in the Hosur area. Our company is operating actively from its base location/office in Hosur. We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. We have a versatile databank, which is being updated on continuous basis through advertisement and professional contact. </p>\r\n<p style=\"text-align: justify;\"><strong>We have separate strong and experienced 5 teams for the following.</strong></p>\r\n	» Administration\r\n        » Human Resources\r\n	» Marketing \r\n	» Business Associates / Site Supervisors\r\n	» Legal/Statutory.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">Currently, we have deployed around 1000 employees in our roll predominantly to the different types of companies as furnished below.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]&raquo; Automobile and Engineering Industries\r\n&raquo; Manufacturing Industries\r\n&raquo; Pharmaceutical Industries\r\n&raquo; Chemical industries \r\n&raquo; Automobile and Light Engineering industries \r\n&raquo; Foods & Dairy Farms, FMGC \r\n&raquo; Consumer Products and Process Industries\r\n&raquo; Civil / Construction companies \r\n&raquo; Electrical & Electronics Industries\r\n&raquo; Interior decoration industries etc.,\r\n&raquo; Protective Packaging Industries.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/manpower-graphic.png\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/manpower-graphic-278x300.png\" alt=\"manpower-graphic\" width=\"278\" height=\"300\" class=\"alignnone size-medium wp-image-976\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2016-03-16 05:50:29", "2016-03-16 05:50:29", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("979", "1", "2016-03-16 05:54:18", "2016-03-16 05:54:18", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/About-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">About Us </span></p>\r\n<p style=\"text-align: justify;\">We proudly introduce ourselves “HRD Integrated Manpower Solution” manpower supply service business has been started during June, 2011. It is  a well-established  manpower service providers in the Hosur area. Our company is operating actively from its base location/office in Hosur. We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. We have a versatile databank, which is being updated on continuous basis through advertisement and professional contact. </p>\r\n<p style=\"text-align: justify;\"><strong>We have separate strong and experienced 5 teams for the following.</strong></p>\r\n	» Administration\r\n        » Human Resources\r\n	» Marketing \r\n	» Business Associates / Site Supervisors\r\n	» Legal/Statutory.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">Currently, we have deployed around 1000 employees in our roll predominantly to the different types of companies as furnished below.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Automobile and Engineering Industries\r\n» Manufacturing Industries\r\n» Pharmaceutical Industries\r\n» Chemical industries \r\n» Automobile and Light Engineering industries \r\n» Foods &amp; Dairy Farms, FMGC \r\n» Consumer Products and Process Industries\r\n» Civil / Construction companies \r\n» Electrical &amp; Electronics Industries\r\n» Interior decoration industries etc.,\r\n» Protective Packaging Industries.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/manpower-graphic-278x300.png\" alt=\"manpower-graphic\" width=\"278\" height=\"300\" class=\"alignnone size-medium wp-image-976\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">We are providing its services from thorough knowledge of the needs of its end users. The integrated facility manpower (Graduates, Diplomas, I T Is, Skilled, semiskilled, unskilled, House Keeping, Executive Drivers etc., ) supply services maximize value and provide efficient services at lower operating costs, maintaining high service levels. Our approach is based upon creating an experienced customer focused management team based on proven management principles. The emphasis is on delivering lifetime care for our client’s critical assets; improve efficiency, productivity and profitability. Our aim is to provide cost effective value for money service.</p>\r\n\r\n<p style=\"text-align: justify;\">We would like to join together with our clients on long term basis in providing value added and timely service for all your HR/Manpower requirements. Our clientele consist of around 15 major companies in and around, Hosur and Bangalore.</p>\r\n\r\n\r\n<p style=\"text-align: justify;\">Further, we proudly inform to you that we have another one joint venture which was a mother concern was started during August, 2001 in the name of “M/s.Divya Manpower Resources Pvt. Ltd.,” for our administrative convenience. We have 20 valuable clients in this name.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2016-03-16 05:54:18", "2016-03-16 05:54:18", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("978", "1", "2016-03-16 05:52:50", "2016-03-16 05:52:50", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/About-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">About Us </span></p>\r\n<p style=\"text-align: justify;\">We proudly introduce ourselves “HRD Integrated Manpower Solution” manpower supply service business has been started during June, 2011. It is  a well-established  manpower service providers in the Hosur area. Our company is operating actively from its base location/office in Hosur. We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. We have a versatile databank, which is being updated on continuous basis through advertisement and professional contact. </p>\r\n<p style=\"text-align: justify;\"><strong>We have separate strong and experienced 5 teams for the following.</strong></p>\r\n	» Administration\r\n        » Human Resources\r\n	» Marketing \r\n	» Business Associates / Site Supervisors\r\n	» Legal/Statutory.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">Currently, we have deployed around 1000 employees in our roll predominantly to the different types of companies as furnished below.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Automobile and Engineering Industries\r\n» Manufacturing Industries\r\n» Pharmaceutical Industries\r\n» Chemical industries \r\n» Automobile and Light Engineering industries \r\n» Foods &amp; Dairy Farms, FMGC \r\n» Consumer Products and Process Industries\r\n» Civil / Construction companies \r\n» Electrical &amp; Electronics Industries\r\n» Interior decoration industries etc.,\r\n» Protective Packaging Industries.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/manpower-graphic.png\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/manpower-graphic-278x300.png\" alt=\"manpower-graphic\" width=\"278\" height=\"300\" class=\"alignnone size-medium wp-image-976\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">We are providing its services from thorough knowledge of the needs of its end users. The integrated facility manpower (Graduates, Diplomas, I T Is, Skilled, semiskilled, unskilled, House Keeping, Executive Drivers etc., ) supply services maximize value and provide efficient services at lower operating costs, maintaining high service levels. Our approach is based upon creating an experienced customer focused management team based on proven management principles. The emphasis is on delivering lifetime care for our client’s critical assets; improve efficiency, productivity and profitability. Our aim is to provide cost effective value for money service.</p>\r\n\r\n<p style=\"text-align: justify;\">We would like to join together with our clients on long term basis in providing value added and timely service for all your HR/Manpower requirements. Our clientele consist of around 15 major companies in and around, Hosur and Bangalore.</p>\r\n\r\n\r\n<p style=\"text-align: justify;\">Further, we proudly inform to you that we have another one joint venture which was a mother concern was started during August, 2001 in the name of “M/s.Divya Manpower Resources Pvt. Ltd.,” for our administrative convenience. We have 20 valuable clients in this name.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2016-03-16 05:52:50", "2016-03-16 05:52:50", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("980", "1", "2016-03-16 05:55:42", "2016-03-16 05:55:42", "", "companyprofile-new", "", "inherit", "open", "open", "", "companyprofile-new", "", "", "2016-03-16 05:55:42", "2016-03-16 05:55:42", "", "337", "http://hrd.softons.cu.cc/wp-content/uploads/2014/12/companyprofile-new.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1111", "1", "2016-03-22 12:33:06", "2016-03-22 12:33:06", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/About-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/companyprofile-new.jpg\" alt=\"companyprofile-new\" width=\"195\" height=\"47\" class=\"alignnone size-full wp-image-980\">\r\n<p style=\"text-align: justify;\">We proudly introduce ourselves “HRD Integrated Manpower Solution” manpower supply service business has been started during June, 2011. It is  a well-established  manpower service providers in the Hosur area. Our company is operating actively from its base location/office in Hosur. We exclusively undertake Manpower , Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. We have a versatile databank, which is being updated on continuous basis through advertisement and professional contact. </p>\r\n<p style=\"text-align: justify;\"><strong>We have separate strong and experienced 5 teams has follows,</strong></p>\r\n	» Administration\r\n        » Human Resources\r\n	» Marketing \r\n	» Business Associates / Site Supervisors\r\n	» Legal/Statutory.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">Currently, we have deployed around 1000 employees in our roll predominantly to the different types of companies as furnished below.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Automobile Industries\r\n» General Engineering Industries\r\n» Pharmaceutical Industries\r\n» Chemical industries\r\n» Foods & Dairy Farms, FMCG\r\n» Consumer Products and Process Industries\r\n» Precast Concrete Industries\r\n» Electrical & Electronics Industries\r\n» Interior decoration industries etc.,[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/manpower-graphic-278x300.png\" alt=\"manpower-graphic\" width=\"278\" height=\"300\" class=\"alignnone size-medium wp-image-976\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">We are providing its services from thorough knowledge of the needs of its end users. The integrated facility manpower (Graduates, Diplomas, I T Is, Skilled, semiskilled, unskilled, House Keeping, Executive Drivers etc., ) supply services maximize value and provide efficient services at lower operating costs, maintaining high service levels. Our approach is based upon creating an experienced customer focused management team based on proven management principles. The emphasis is on delivering lifetime care for our client’s critical assets; improve efficiency, productivity and profitability. Our aim is to provide cost effective value for money service.</p>\r\n\r\n<p style=\"text-align: justify;\">We would like to join together with our clients on long term basis in providing value added and timely service for all your HR/Manpower requirements. Our clientele consist of around 15 major companies in and around, Hosur and Bangalore.</p>\r\n\r\n\r\n<p style=\"text-align: justify;\">Further, we proudly inform to you that we have another one joint venture which was a mother concern was started during August, 2001 in the name of <strong>“M/s.Divya Manpower Resources Pvt. Ltd.,” </strong>for our administrative convenience. We have 20 valuable clients in this name.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Profile", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2016-03-22 12:33:06", "2016-03-22 12:33:06", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("982", "1", "2016-03-16 05:56:45", "2016-03-16 05:56:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/About-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/companyprofile-new.jpg\" alt=\"companyprofile-new\" width=\"195\" height=\"47\" class=\"alignnone size-full wp-image-980\">\r\n<p style=\"text-align: justify;\">We proudly introduce ourselves “HRD Integrated Manpower Solution” manpower supply service business has been started during June, 2011. It is  a well-established  manpower service providers in the Hosur area. Our company is operating actively from its base location/office in Hosur. We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. We have a versatile databank, which is being updated on continuous basis through advertisement and professional contact. </p>\r\n<p style=\"text-align: justify;\"><strong>We have separate strong and experienced 5 teams for the following.</strong></p>\r\n	» Administration\r\n        » Human Resources\r\n	» Marketing \r\n	» Business Associates / Site Supervisors\r\n	» Legal/Statutory.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">Currently, we have deployed around 1000 employees in our roll predominantly to the different types of companies as furnished below.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Automobile and Engineering Industries\r\n» Manufacturing Industries\r\n» Pharmaceutical Industries\r\n» Chemical industries \r\n» Automobile and Light Engineering industries \r\n» Foods &amp; Dairy Farms, FMGC \r\n» Consumer Products and Process Industries\r\n» Civil / Construction companies \r\n» Electrical &amp; Electronics Industries\r\n» Interior decoration industries etc.,\r\n» Protective Packaging Industries.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/manpower-graphic-278x300.png\" alt=\"manpower-graphic\" width=\"278\" height=\"300\" class=\"alignnone size-medium wp-image-976\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">We are providing its services from thorough knowledge of the needs of its end users. The integrated facility manpower (Graduates, Diplomas, I T Is, Skilled, semiskilled, unskilled, House Keeping, Executive Drivers etc., ) supply services maximize value and provide efficient services at lower operating costs, maintaining high service levels. Our approach is based upon creating an experienced customer focused management team based on proven management principles. The emphasis is on delivering lifetime care for our client’s critical assets; improve efficiency, productivity and profitability. Our aim is to provide cost effective value for money service.</p>\r\n\r\n<p style=\"text-align: justify;\">We would like to join together with our clients on long term basis in providing value added and timely service for all your HR/Manpower requirements. Our clientele consist of around 15 major companies in and around, Hosur and Bangalore.</p>\r\n\r\n\r\n<p style=\"text-align: justify;\">Further, we proudly inform to you that we have another one joint venture which was a mother concern was started during August, 2001 in the name of “M/s.Divya Manpower Resources Pvt. Ltd.,” for our administrative convenience. We have 20 valuable clients in this name.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2016-03-16 05:56:45", "2016-03-16 05:56:45", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("981", "1", "2016-03-16 05:56:01", "2016-03-16 05:56:01", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/About-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/companyprofile-new.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/companyprofile-new.jpg\" alt=\"companyprofile-new\" width=\"195\" height=\"47\" class=\"alignnone size-full wp-image-980\" /></a>\r\n<p style=\"text-align: justify;\">We proudly introduce ourselves “HRD Integrated Manpower Solution” manpower supply service business has been started during June, 2011. It is  a well-established  manpower service providers in the Hosur area. Our company is operating actively from its base location/office in Hosur. We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. We have a versatile databank, which is being updated on continuous basis through advertisement and professional contact. </p>\r\n<p style=\"text-align: justify;\"><strong>We have separate strong and experienced 5 teams for the following.</strong></p>\r\n	» Administration\r\n        » Human Resources\r\n	» Marketing \r\n	» Business Associates / Site Supervisors\r\n	» Legal/Statutory.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">Currently, we have deployed around 1000 employees in our roll predominantly to the different types of companies as furnished below.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Automobile and Engineering Industries\r\n» Manufacturing Industries\r\n» Pharmaceutical Industries\r\n» Chemical industries \r\n» Automobile and Light Engineering industries \r\n» Foods &amp; Dairy Farms, FMGC \r\n» Consumer Products and Process Industries\r\n» Civil / Construction companies \r\n» Electrical &amp; Electronics Industries\r\n» Interior decoration industries etc.,\r\n» Protective Packaging Industries.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/manpower-graphic-278x300.png\" alt=\"manpower-graphic\" width=\"278\" height=\"300\" class=\"alignnone size-medium wp-image-976\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">We are providing its services from thorough knowledge of the needs of its end users. The integrated facility manpower (Graduates, Diplomas, I T Is, Skilled, semiskilled, unskilled, House Keeping, Executive Drivers etc., ) supply services maximize value and provide efficient services at lower operating costs, maintaining high service levels. Our approach is based upon creating an experienced customer focused management team based on proven management principles. The emphasis is on delivering lifetime care for our client’s critical assets; improve efficiency, productivity and profitability. Our aim is to provide cost effective value for money service.</p>\r\n\r\n<p style=\"text-align: justify;\">We would like to join together with our clients on long term basis in providing value added and timely service for all your HR/Manpower requirements. Our clientele consist of around 15 major companies in and around, Hosur and Bangalore.</p>\r\n\r\n\r\n<p style=\"text-align: justify;\">Further, we proudly inform to you that we have another one joint venture which was a mother concern was started during August, 2001 in the name of “M/s.Divya Manpower Resources Pvt. Ltd.,” for our administrative convenience. We have 20 valuable clients in this name.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2016-03-16 05:56:01", "2016-03-16 05:56:01", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1001", "1", "2016-03-16 07:23:59", "2016-03-16 07:23:59", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/About-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/companyprofile-new.jpg\" alt=\"companyprofile-new\" width=\"195\" height=\"47\" class=\"alignnone size-full wp-image-980\">\r\n<p style=\"text-align: justify;\">We proudly introduce ourselves “HRD Integrated Manpower Solution” manpower supply service business has been started during June, 2011. It is  a well-established  manpower service providers in the Hosur area. Our company is operating actively from its base location/office in Hosur. We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. We have a versatile databank, which is being updated on continuous basis through advertisement and professional contact. </p>\r\n<p style=\"text-align: justify;\"><strong>We have separate strong and experienced 5 teams for the following.</strong></p>\r\n	» Administration\r\n        » Human Resources\r\n	» Marketing \r\n	» Business Associates / Site Supervisors\r\n	» Legal/Statutory.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">Currently, we have deployed around 1000 employees in our roll predominantly to the different types of companies as furnished below.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Automobile and Engineering Industries\r\n» Manufacturing Industries\r\n» Pharmaceutical Industries\r\n» Chemical industries \r\n» Automobile and Light Engineering industries \r\n» Foods &amp; Dairy Farms, FMGC \r\n» Consumer Products and Process Industries\r\n» Civil / Construction companies \r\n» Electrical &amp; Electronics Industries\r\n» Interior decoration industries etc.,\r\n» Protective Packaging Industries.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/manpower-graphic-278x300.png\" alt=\"manpower-graphic\" width=\"278\" height=\"300\" class=\"alignnone size-medium wp-image-976\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">We are providing its services from thorough knowledge of the needs of its end users. The integrated facility manpower (Graduates, Diplomas, I T Is, Skilled, semiskilled, unskilled, House Keeping, Executive Drivers etc., ) supply services maximize value and provide efficient services at lower operating costs, maintaining high service levels. Our approach is based upon creating an experienced customer focused management team based on proven management principles. The emphasis is on delivering lifetime care for our client’s critical assets; improve efficiency, productivity and profitability. Our aim is to provide cost effective value for money service.</p>\r\n\r\n<p style=\"text-align: justify;\">We would like to join together with our clients on long term basis in providing value added and timely service for all your HR/Manpower requirements. Our clientele consist of around 15 major companies in and around, Hosur and Bangalore.</p>\r\n\r\n\r\n<p style=\"text-align: justify;\">Further, we proudly inform to you that we have another one joint venture which was a mother concern was started during August, 2001 in the name of <strong>“M/s.Divya Manpower Resources Pvt. Ltd.,” </strong>for our administrative convenience. We have 20 valuable clients in this name.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Profile", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2016-03-16 07:23:59", "2016-03-16 07:23:59", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("983", "1", "2016-03-16 05:58:14", "2016-03-16 05:58:14", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/About-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/companyprofile-new.jpg\" alt=\"companyprofile-new\" width=\"195\" height=\"47\" class=\"alignnone size-full wp-image-980\">\r\n<p style=\"text-align: justify;\">We proudly introduce ourselves “HRD Integrated Manpower Solution” manpower supply service business has been started during June, 2011. It is  a well-established  manpower service providers in the Hosur area. Our company is operating actively from its base location/office in Hosur. We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. We have a versatile databank, which is being updated on continuous basis through advertisement and professional contact. </p>\r\n<p style=\"text-align: justify;\"><strong>We have separate strong and experienced 5 teams for the following.</strong></p>\r\n	» Administration\r\n        » Human Resources\r\n	» Marketing \r\n	» Business Associates / Site Supervisors\r\n	» Legal/Statutory.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">Currently, we have deployed around 1000 employees in our roll predominantly to the different types of companies as furnished below.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Automobile and Engineering Industries\r\n» Manufacturing Industries\r\n» Pharmaceutical Industries\r\n» Chemical industries \r\n» Automobile and Light Engineering industries \r\n» Foods &amp; Dairy Farms, FMGC \r\n» Consumer Products and Process Industries\r\n» Civil / Construction companies \r\n» Electrical &amp; Electronics Industries\r\n» Interior decoration industries etc.,\r\n» Protective Packaging Industries.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/manpower-graphic-278x300.png\" alt=\"manpower-graphic\" width=\"278\" height=\"300\" class=\"alignnone size-medium wp-image-976\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">We are providing its services from thorough knowledge of the needs of its end users. The integrated facility manpower (Graduates, Diplomas, I T Is, Skilled, semiskilled, unskilled, House Keeping, Executive Drivers etc., ) supply services maximize value and provide efficient services at lower operating costs, maintaining high service levels. Our approach is based upon creating an experienced customer focused management team based on proven management principles. The emphasis is on delivering lifetime care for our client’s critical assets; improve efficiency, productivity and profitability. Our aim is to provide cost effective value for money service.</p>\r\n\r\n<p style=\"text-align: justify;\">We would like to join together with our clients on long term basis in providing value added and timely service for all your HR/Manpower requirements. Our clientele consist of around 15 major companies in and around, Hosur and Bangalore.</p>\r\n\r\n\r\n<p style=\"text-align: justify;\">Further, we proudly inform to you that we have another one joint venture which was a mother concern was started during August, 2001 in the name of <strong>“M/s.Divya Manpower Resources Pvt. Ltd.,” </strong>for our administrative convenience. We have 20 valuable clients in this name.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2016-03-16 05:58:14", "2016-03-16 05:58:14", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("984", "1", "2016-03-16 06:50:49", "2016-03-16 06:50:49", "", "testimonial", "", "inherit", "open", "open", "", "testimonial", "", "", "2016-03-16 06:50:49", "2016-03-16 06:50:49", "", "792", "http://hrd.softons.cu.cc/wp-content/uploads/2015/03/testimonial.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("985", "1", "2016-03-16 06:51:02", "2016-03-16 06:51:02", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/testimonial.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"font-size: 25px; font-weight: bold; text-transform:uppercase; color:#12ae36; \">Testimionial</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d8d8d8\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-transform: lowercase;\">WE ARE GLAD TO BE HERE. WE HAVE BEEN CHERISHING A BLISSFUL LIFE IN OUR HOME SINCE 2013. THANKS TO PRIYAA CONSTRUCTION EFFORTS TO ASSURE OUR HAPPINESS. AT OUR HOME, LIFE IS ALWAYS A BLISSFUL EXPERIENCE</p>\r\n\r\n-Mr Ravi &amp; Family[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]Hi team,\r\nI am really happy that Priyaa Construction is treating me as its own family member . I am impressed by Priyaa Construction\'s flexibility and commitment to the customers.\r\n\r\n-Mr Kumar, Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]It\'s my long cherished dream for three years to acquire a flat which has all basic amenities for present trend of lifestyle in affordable budget. Priyaa Construction come with the answer.\r\n\r\n-Mr Josaf, Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]I am extremely satisfied with the service level of the sales and marketing team when i purchased apartments in Priyaa Construction.I was given clear picture of the all inclusive cost of the apartments at the time of booking and the response of the team across the organisation is highly commendable.\r\n\r\n-Mr Sivakumar &amp; Family Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]My family is very happy and contented that \'Priyaa Construction\' is the builders for our \'Synergy\' residential apartments at Hosur. Apart from building the apartments, they build cordial relationship and friendship too with the customer in each step. Work is progressing well methodically and systematically at the construction site, since the date of \'bhumi puja\' this year in Jan 2015.\r\n\r\nEagerly waiting to have our beautiful dream home soon built by construction with their obsession for perfection\r\n\r\n-Mr Ramkumar &amp; Family Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]The work was awarded to Priyaa Construction based on competitive tenders and was completed by them in time to our satisfaction. The contractors were found to be  on-time and quality conscious and they employed qualified and well trained staff at site....\r\n\r\n-Mr Srithar, Hosur[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2016-03-16 06:51:02", "2016-03-16 06:51:02", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("986", "1", "2016-03-16 06:53:52", "2016-03-16 06:53:52", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/testimonial.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Testimionial</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d8d8d8\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-transform: lowercase;\">WE ARE GLAD TO BE HERE. WE HAVE BEEN CHERISHING A BLISSFUL LIFE IN OUR HOME SINCE 2013. THANKS TO PRIYAA CONSTRUCTION EFFORTS TO ASSURE OUR HAPPINESS. AT OUR HOME, LIFE IS ALWAYS A BLISSFUL EXPERIENCE</p>\r\n\r\n-Mr Ravi &amp; Family[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]Hi team,\r\nI am really happy that Priyaa Construction is treating me as its own family member . I am impressed by Priyaa Construction\'s flexibility and commitment to the customers.\r\n\r\n-Mr Kumar, Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]It\'s my long cherished dream for three years to acquire a flat which has all basic amenities for present trend of lifestyle in affordable budget. Priyaa Construction come with the answer.\r\n\r\n-Mr Josaf, Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]I am extremely satisfied with the service level of the sales and marketing team when i purchased apartments in Priyaa Construction.I was given clear picture of the all inclusive cost of the apartments at the time of booking and the response of the team across the organisation is highly commendable.\r\n\r\n-Mr Sivakumar &amp; Family Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]My family is very happy and contented that \'Priyaa Construction\' is the builders for our \'Synergy\' residential apartments at Hosur. Apart from building the apartments, they build cordial relationship and friendship too with the customer in each step. Work is progressing well methodically and systematically at the construction site, since the date of \'bhumi puja\' this year in Jan 2015.\r\n\r\nEagerly waiting to have our beautiful dream home soon built by construction with their obsession for perfection\r\n\r\n-Mr Ramkumar &amp; Family Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]The work was awarded to Priyaa Construction based on competitive tenders and was completed by them in time to our satisfaction. The contractors were found to be  on-time and quality conscious and they employed qualified and well trained staff at site....\r\n\r\n-Mr Srithar, Hosur[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2016-03-16 06:53:52", "2016-03-16 06:53:52", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("987", "1", "2016-03-16 06:54:54", "2016-03-16 06:54:54", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/testimonial.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Testimonial</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d8d8d8\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-transform: lowercase;\">WE ARE GLAD TO BE HERE. WE HAVE BEEN CHERISHING A BLISSFUL LIFE IN OUR HOME SINCE 2013. THANKS TO PRIYAA CONSTRUCTION EFFORTS TO ASSURE OUR HAPPINESS. AT OUR HOME, LIFE IS ALWAYS A BLISSFUL EXPERIENCE</p>\r\n\r\n-Mr Ravi &amp; Family[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]Hi team,\r\nI am really happy that Priyaa Construction is treating me as its own family member . I am impressed by Priyaa Construction\'s flexibility and commitment to the customers.\r\n\r\n-Mr Kumar, Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]It\'s my long cherished dream for three years to acquire a flat which has all basic amenities for present trend of lifestyle in affordable budget. Priyaa Construction come with the answer.\r\n\r\n-Mr Josaf, Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]I am extremely satisfied with the service level of the sales and marketing team when i purchased apartments in Priyaa Construction.I was given clear picture of the all inclusive cost of the apartments at the time of booking and the response of the team across the organisation is highly commendable.\r\n\r\n-Mr Sivakumar &amp; Family Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]My family is very happy and contented that \'Priyaa Construction\' is the builders for our \'Synergy\' residential apartments at Hosur. Apart from building the apartments, they build cordial relationship and friendship too with the customer in each step. Work is progressing well methodically and systematically at the construction site, since the date of \'bhumi puja\' this year in Jan 2015.\r\n\r\nEagerly waiting to have our beautiful dream home soon built by construction with their obsession for perfection\r\n\r\n-Mr Ramkumar &amp; Family Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]The work was awarded to Priyaa Construction based on competitive tenders and was completed by them in time to our satisfaction. The contractors were found to be  on-time and quality conscious and they employed qualified and well trained staff at site....\r\n\r\n-Mr Srithar, Hosur[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2016-03-16 06:54:54", "2016-03-16 06:54:54", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("989", "1", "2016-03-16 07:00:18", "2016-03-16 07:00:18", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/testimonial.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Testimonial</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d8d8d8\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2016-03-16 07:00:18", "2016-03-16 07:00:18", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("992", "1", "2016-03-16 07:04:25", "2016-03-16 07:04:25", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/testimonial.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Testimonial</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d8d8d8\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify; color:#ffffff;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD. <br>\r\n   <strong> -Priya, Bangalore</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2016-03-16 07:04:25", "2016-03-16 07:04:25", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("990", "1", "2016-03-16 07:02:51", "2016-03-16 07:02:51", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/testimonial.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Testimonial</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d8d8d8\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify; colorL:#ffffff;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2016-03-16 07:02:51", "2016-03-16 07:02:51", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("991", "1", "2016-03-16 07:03:23", "2016-03-16 07:03:23", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/testimonial.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Testimonial</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d8d8d8\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify; color:#ffffff;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2016-03-16 07:03:23", "2016-03-16 07:03:23", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("993", "1", "2016-03-16 07:05:41", "2016-03-16 07:05:41", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/testimonial.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Testimonial</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d8d8d8\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.\r\n\r\n<strong>                                         -Priya, Bangalore</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2016-03-16 07:05:41", "2016-03-16 07:05:41", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("995", "1", "2016-03-16 07:06:56", "2016-03-16 07:06:56", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/testimonial.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Testimonial</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d8d8d8\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.\r\n<strong> -Priya, Bangalore</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2016-03-16 07:06:56", "2016-03-16 07:06:56", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("994", "1", "2016-03-16 07:06:22", "2016-03-16 07:06:22", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/testimonial.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Testimonial</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d8d8d8\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.\r\n\r\n<strong> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -Priya, Bangalore</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2016-03-16 07:06:22", "2016-03-16 07:06:22", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("996", "1", "2016-03-16 07:07:53", "2016-03-16 07:07:53", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/testimonial.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Testimonial</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d8d8d8\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> -Priya, Bangalore</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2016-03-16 07:07:53", "2016-03-16 07:07:53", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("997", "1", "2016-03-16 07:16:33", "2016-03-16 07:16:33", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/testimonial.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Testimonial</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d8d8d8\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\r\n“A very good, informative service. HRD Integrated Manpower Solution got back to me very quickly regarding interviews and offer letters. A much recommended company in IT recruitment.  They kept me up to date with all the details leading up to my offer and acceptance – many thanks to them for a great service.”</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> - Akshara, Bangalore</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.\"</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> - Priya, Bangalore</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"I have been trying for Software job for the past 2 years. HRD Integrated Manpower Solution helped me to get job in Software Company. They trained me how to get through the interview successfully.\"</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> - Arjun, Chennai</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"I tried for jobs for so many years and finally I got job in Bangalore according to my skills and experience. HRD Integrated Manpower Solution helps me to get Placement in MNC Company in Bangalore.\"</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> -Rhonak, Bangalore</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"The service received has been very good. HRD Integrated Manpower Solution has been in regular contact with me to check my progress. I have been pleased with the regular contact and when I have a query HRD Integrated Manpower Solution have always been there to help.”</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> -Shravan, Chennai</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\r\n“Very Positive! Staffs are always helpful and obliging. Also they found me the exact job that I wanted in the location that I wanted. They also helped my friends to get some suitable jobs”</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> -Siva, Hosur</strong></p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2016-03-16 07:16:33", "2016-03-16 07:16:33", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("998", "1", "2016-03-16 07:17:16", "2016-03-16 07:17:16", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/testimonial.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Testimonial</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d8d8d8\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\r\n“A very good, informative service. HRD Integrated Manpower Solution got back to me very quickly regarding interviews and offer letters. A much recommended company in IT recruitment.  They kept me up to date with all the details leading up to my offer and acceptance – many thanks to them for a great service.”</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> - Akshara, Bangalore</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"I have been trying for Software job for the past 2 years. HRD Integrated Manpower Solution helped me to get job in Software Company. They trained me how to get through the interview successfully.\"</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> - Arjun, Chennai</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"I tried for jobs for so many years and finally I got job in Bangalore according to my skills and experience. HRD Integrated Manpower Solution helps me to get Placement in MNC Company in Bangalore.\"</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> -Rhonak, Bangalore</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"The service received has been very good. HRD Integrated Manpower Solution has been in regular contact with me to check my progress. I have been pleased with the regular contact and when I have a query HRD Integrated Manpower Solution have always been there to help.”</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> -Shravan, Chennai</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\r\n“Very Positive! Staffs are always helpful and obliging. Also they found me the exact job that I wanted in the location that I wanted. They also helped my friends to get some suitable jobs”</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> -Siva, Hosur</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.\"</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> - Priya, Bangalore</strong></p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2016-03-16 07:17:16", "2016-03-16 07:17:16", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("999", "1", "2016-03-16 07:20:09", "2016-03-16 07:20:09", "", "testimonial", "", "inherit", "open", "open", "", "testimonial-2", "", "", "2016-03-16 07:20:09", "2016-03-16 07:20:09", "", "792", "http://hrd.softons.cu.cc/wp-content/uploads/2015/03/testimonial1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1000", "1", "2016-03-16 07:20:17", "2016-03-16 07:20:17", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/testimonial1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Testimonial</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d8d8d8\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\r\n“A very good, informative service. HRD Integrated Manpower Solution got back to me very quickly regarding interviews and offer letters. A much recommended company in IT recruitment.  They kept me up to date with all the details leading up to my offer and acceptance – many thanks to them for a great service.”</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> - Akshara, Bangalore</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"I have been trying for Software job for the past 2 years. HRD Integrated Manpower Solution helped me to get job in Software Company. They trained me how to get through the interview successfully.\"</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> - Arjun, Chennai</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"I tried for jobs for so many years and finally I got job in Bangalore according to my skills and experience. HRD Integrated Manpower Solution helps me to get Placement in MNC Company in Bangalore.\"</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> -Rhonak, Bangalore</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"The service received has been very good. HRD Integrated Manpower Solution has been in regular contact with me to check my progress. I have been pleased with the regular contact and when I have a query HRD Integrated Manpower Solution have always been there to help.”</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> -Shravan, Chennai</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\r\n“Very Positive! Staffs are always helpful and obliging. Also they found me the exact job that I wanted in the location that I wanted. They also helped my friends to get some suitable jobs”</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> -Siva, Hosur</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.\"</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> - Priya, Bangalore</strong></p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2016-03-16 07:20:17", "2016-03-16 07:20:17", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1002", "1", "2016-03-16 08:46:24", "2016-03-16 08:46:24", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1 style=\"color:#8224e3;\">Manpower Provider</h1>\r\n\r\n<p style=\"text-align:justify;\">We are one of the leading manpower service providers, engaged in all sectors such as Automobiles, Engineering, Construction, Chemical, Pharma, Diary, Electronics and Hospitality Services. Our organization has gained huge appreciation from the clients due to its highly efficient and professionally managed services that are supported by timely execution and high quality standards.</p>\r\n\r\n\r\n<p style=\"text-align:justify;\"> We provide Fresher/Experienced trained manpower to our clients as per the specific requirement of the client. We provide equipment ready manpower as per the specifications received from Client on short notice. These manpower helps the clients to reduce operations cost and thus directly helps in short or long term skilled resources requirements.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"color:#8224e3;\">We provide following type of manpower with equipment support to our clients:</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Accounts\r\n» Admin\r\n» Human resource\r\n» Engineering[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Maintenance\r\n» Supervisor\r\n» Fitters and Welders\r\n» MEP - Mechanical, Electrical, Plumbing[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Industrial Insulators\r\n» Foreman Steel Fixer\r\n» Carpenter\r\n» Skilled and unskilled labour[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides101.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Manpower Provider", "", "publish", "open", "open", "", "manpower-provider", "", "", "2016-03-22 12:31:51", "2016-03-22 12:31:51", "", "0", "http://hrd.softons.cu.cc/?page_id=1002", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1003", "1", "2016-03-16 08:46:24", "2016-03-16 08:46:24", "", "Manpower Provider", "", "inherit", "open", "open", "", "1002-revision-v1", "", "", "2016-03-16 08:46:24", "2016-03-16 08:46:24", "", "1002", "http://hrd.softons.cu.cc/1002-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1004", "1", "2016-03-22 12:30:17", "2016-03-22 12:30:17", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1 style=\"color:#8224e3;\">Manpower Provider</h1>\n\n<p style=\"text-align:justify;\">We are one of the leading manpower service providers, engaged in all sectors such as Automobiles, Engineering, Construction, Chemical, Pharma, Diary, Electronics and Hospitality Services. Our organization has gained huge appreciation from the clients due to its highly efficient and professionally managed services that are supported by timely execution and high quality standards.</p>\n\n\n<p style=\"text-align:justify;\"> We provide Fresher/Experienced trained manpower to our clients as per the specific requirement of the client. We provide equipment ready manpower as per the specifications received from Client on short notice. These manpower helps the clients to reduce operations cost and thus directly helps in short or long term skilled resources requirements.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"color:#8224e3;\">We provide following type of manpower with equipment support to our clients:</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Accounts\n» Admin\n» Human resource\n» Engineering[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Maintenance\n» Supervisor\n» Fitters and Welders\n» MEP - Mechanical, Electrical, Plumbing[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Industrial Insulators\n» Foreman Steel Fixer\n» Carpenter\n» Skilled and unskilled labour[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides101.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Manpower Provider", "", "inherit", "open", "open", "", "1002-autosave-v1", "", "", "2016-03-22 12:30:17", "2016-03-22 12:30:17", "", "1002", "http://hrd.softons.cu.cc/1002-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1005", "1", "2016-03-16 09:29:24", "2016-03-16 09:29:24", "", "service1", "", "inherit", "open", "open", "", "service1", "", "", "2016-03-16 09:29:24", "2016-03-16 09:29:24", "", "1002", "http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1006", "1", "2016-03-16 09:29:39", "2016-03-16 09:29:39", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][/et_pb_row][/et_pb_section]", "Manpower Provider", "", "inherit", "open", "open", "", "1002-revision-v1", "", "", "2016-03-16 09:29:39", "2016-03-16 09:29:39", "", "1002", "http://hrd.softons.cu.cc/1002-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1007", "1", "2016-03-16 10:30:41", "2016-03-16 10:30:41", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Recruitment.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Recruitment</span></p>\r\n<p style=\"text-align:justify;\">HRD INTEGRATED MANPOWER SOLUTION is basically an organization completely deals with manpower consulting. In that we are associating with a huge number of firms. We are doing recruitment services for other organizations. This is commonly doing after the complete analysis of employer. </p>\r\n<p style=\"text-align:justify;\">We are following international recruitment standards. We are selecting very suitable candidates from every recruitment. Our IT recruitment procedures are famous in all the software industry. </p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">We, at HRD INTEGRATED MANPOWER SOLUTION, are specialized in providing proficient Manpower Recruitment solutions to the companies, looking for suitable manpower for their job requirements. We cater to the diverse manpower needs of all the industries such as Engineering, Iron &amp; Steel, Power, Real Estate, FMCG, Retail, IT/ ITES, Healthcare, Logistics, Hospitality, and many others. </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit.jpg\" alt=\"recruit\" width=\"673\" height=\"199\" class=\"alignnone size-full wp-image-1027\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">We have developed a rich database of the candidates who can fit in the different job roles offered by the companies. Moreover, we are capable of providing suitable fresher or experienced candidates as per the requirement of the client.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:25px; line-height:12px;\">Recruitment On Demand</span></p>\r\nThe Recruiting On-Demand model is perfect for those who need recruiting on a periodic basis. If your recruiting cycles require peak-period support, you will have all the benefits of a fully staffed recruiting department without the related cost of maintaining and housing that overhead during down or non-hire periods. Moreover, for proficient & cost-effective Recruitment On Demand solutions, you can contact to HRD INTEGRATED MANPOWER SOLUTION.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit1.jpg\" alt=\"recruit1\" width=\"1920\" height=\"810\" class=\"alignnone size-full wp-image-1038\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Recruitment", "", "publish", "open", "open", "", "recruitment", "", "", "2016-03-22 11:21:19", "2016-03-22 11:21:19", "", "0", "http://hrd.softons.cu.cc/?page_id=1007", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1008", "1", "2016-03-16 10:30:41", "2016-03-16 10:30:41", "", "Recruitment", "", "inherit", "open", "open", "", "1007-revision-v1", "", "", "2016-03-16 10:30:41", "2016-03-16 10:30:41", "", "1007", "http://hrd.softons.cu.cc/1007-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1009", "1", "2016-03-22 11:20:30", "2016-03-22 11:20:30", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Recruitment.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Recruitment</span></p>\r\n<p style=\"text-align:justify;\">HRD INTEGRATED MANPOWER SOLUTION is basically an organization completely deals with manpower consulting. In that we are associating with a huge number of firms. We are doing recruitment services for other organizations. This is commonly doing after the complete analysis of employer. </p>\r\n<p style=\"text-align:justify;\">We are following international recruitment standards. We are selecting very suitable candidates from every recruitment. Our IT recruitment procedures are famous in all the software industry. </p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">We, at HRD INTEGRATED MANPOWER SOLUTION, are specialized in providing proficient Manpower Recruitment solutions to the companies, looking for suitable manpower for their job requirements. We cater to the diverse manpower needs of all the industries such as Engineering, Iron &amp; Steel, Power, Real Estate, FMCG, Retail, IT/ ITES, Healthcare, Logistics, Hospitality, and many others. </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit.jpg\" alt=\"recruit\" width=\"673\" height=\"199\" class=\"alignnone size-full wp-image-1027\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">We have developed a rich database of the candidates who can fit in the different job roles offered by the companies. Moreover, we are capable of providing suitable fresher or experienced candidates as per the requirement of the client.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:25px; line-height:12px;\">Recruitment On Demand</span></p>\r\nThe Recruiting On-Demand model is perfect for those who need recruiting on a periodic basis. If your recruiting cycles require peak-period support, you will have all the benefits of a fully staffed recruiting department without the related cost of maintaining and housing that overhead during down or non-hire periods. Moreover, for proficient & cost-effective Recruitment On Demand solutions, you can contact to HRD INTEGRATED MANPOWER SOLUTION.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit1.jpg\" alt=\"recruit1\" width=\"1920\" height=\"810\" class=\"alignnone size-full wp-image-1038\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Recruitment", "", "inherit", "open", "open", "", "1007-autosave-v1", "", "", "2016-03-22 11:20:30", "2016-03-22 11:20:30", "", "1007", "http://hrd.softons.cu.cc/1007-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1010", "1", "2016-03-16 10:34:37", "2016-03-16 10:34:37", "", "service2", "", "inherit", "open", "open", "", "service2", "", "", "2016-03-16 10:34:37", "2016-03-16 10:34:37", "", "1007", "http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1011", "1", "2016-03-16 10:34:46", "2016-03-16 10:34:46", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][/et_pb_row][/et_pb_section]", "Recruitment", "", "inherit", "open", "open", "", "1007-revision-v1", "", "", "2016-03-16 10:34:46", "2016-03-16 10:34:46", "", "1007", "http://hrd.softons.cu.cc/1007-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1012", "1", "2016-03-16 10:37:12", "2016-03-16 10:37:12", "", "service2", "", "inherit", "open", "open", "", "service2-2", "", "", "2016-03-16 10:37:12", "2016-03-16 10:37:12", "", "1007", "http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service21.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1013", "1", "2016-03-16 10:37:21", "2016-03-16 10:37:21", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][/et_pb_row][/et_pb_section]", "Recruitment", "", "inherit", "open", "open", "", "1007-revision-v1", "", "", "2016-03-16 10:37:21", "2016-03-16 10:37:21", "", "1007", "http://hrd.softons.cu.cc/1007-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1019", "1", "2016-03-16 12:14:19", "2016-03-16 12:14:19", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides-.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][/et_pb_row][/et_pb_section]", "Recruitment", "", "inherit", "open", "open", "", "1007-revision-v1", "", "", "2016-03-16 12:14:19", "2016-03-16 12:14:19", "", "1007", "http://hrd.softons.cu.cc/1007-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1015", "1", "2016-03-16 10:41:33", "2016-03-16 10:41:33", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service4.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][/et_pb_row][/et_pb_section]", "Recruitment", "", "inherit", "open", "open", "", "1007-revision-v1", "", "", "2016-03-16 10:41:33", "2016-03-16 10:41:33", "", "1007", "http://hrd.softons.cu.cc/1007-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1017", "1", "2016-03-16 12:10:57", "2016-03-16 12:10:57", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service5.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][/et_pb_row][/et_pb_section]", "Recruitment", "", "inherit", "open", "open", "", "1007-revision-v1", "", "", "2016-03-16 12:10:57", "2016-03-16 12:10:57", "", "1007", "http://hrd.softons.cu.cc/1007-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("831", "1", "2015-03-25 11:17:40", "2015-03-25 11:17:40", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides61.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify;\">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify;\">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-25 11:17:40", "2015-03-25 11:17:40", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("541", "1", "2014-12-05 03:51:51", "2014-12-05 03:51:51", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_gallery admin_label=\"Gallery\" fullwidth=\"on\" posts_number=\"6\" show_title_and_caption=\"on\" show_pagination=\"on\" background_layout=\"light\" gallery_ids=\"860,861,862,863,864,865\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Completed Projects", "", "trash", "open", "open", "", "completed-projects", "", "", "2016-03-18 10:29:26", "2016-03-18 10:29:26", "", "0", "http://hrd.softons.cu.cc/?page_id=541", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("542", "1", "2014-12-05 03:51:51", "2014-12-05 03:51:51", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_gallery admin_label=\"Gallery\" fullwidth=\"on\" posts_number=\"6\" show_title_and_caption=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Completed Projects", "", "inherit", "open", "open", "", "541-revision-v1", "", "", "2014-12-05 03:51:51", "2014-12-05 03:51:51", "", "541", "http://hrd.softons.cu.cc/541-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("549", "1", "2014-12-05 04:55:40", "2014-12-05 04:55:40", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_gallery admin_label=\"Gallery\" fullwidth=\"on\" posts_number=\"6\" show_title_and_caption=\"on\" show_pagination=\"on\" background_layout=\"light\" gallery_ids=\"543,544,545,546,547,548\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Completed Projects", "", "inherit", "open", "open", "", "541-revision-v1", "", "", "2014-12-05 04:55:40", "2014-12-05 04:55:40", "", "541", "http://hrd.softons.cu.cc/541-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("551", "1", "2014-12-06 04:57:19", "2014-12-06 04:57:19", "[et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">ENQUIRY NOW </span></p> \r\n\r\nWhenever you think to buy luxury villas, temporary as well as permanent, we are always at your service to the fullest extent.\r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<span style=\"color:#0287bf; font-size:16px;\"><strong>OFFICE @</strong> </span>\r\n\r\nNo.L-82/A, 15th Cross,\r\n5th Main, 6th Sector, HSR Layout,\r\nBengaluru - 560 102.\r\n\r\n\r\n<strong>Mobile</strong> : +91 96591 09333\r\n<strong>Office</strong> : +91 080 4099 6703\r\n\r\n\r\n<strong>Email</strong> : info@nandaavanaproperties.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2014-12-06 04:57:19", "2014-12-06 04:57:19", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("552", "1", "2014-12-06 04:58:08", "2014-12-06 04:58:08", "[et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">ENQUIRY NOW </span></p> \r\n\r\nWhenever you think to buy luxury villas, temporary as well as permanent, we are always at your service to the fullest extent.\r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">OFFICE @ </span></p> \r\n\r\nNo.L-82/A, 15th Cross,\r\n5th Main, 6th Sector, HSR Layout,\r\nBengaluru - 560 102.\r\n\r\n\r\n<strong>Mobile</strong> : +91 96591 09333\r\n<strong>Office</strong> : +91 080 4099 6703\r\n\r\n\r\n<strong>Email</strong> : info@nandaavanaproperties.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2014-12-06 04:58:08", "2014-12-06 04:58:08", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("560", "1", "2014-12-06 05:06:56", "2014-12-06 05:06:56", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">ENQUIRY NOW </span></p> \r\n\r\nWhenever you think to buy luxury villas, temporary as well as permanent, we are always at your service to the fullest extent.\r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">OFFICE @ </span></p> \r\n\r\nNo.L-82/A, 15th Cross,\r\n5th Main, 6th Sector, HSR Layout,\r\nBengaluru - 560 102.\r\n\r\n\r\n<strong>Mobile</strong> : +91 96591 09333\r\n<strong>Office</strong> : +91 080 4099 6703\r\n\r\n\r\n<strong>Email</strong> : info@nandaavanaproperties.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2014-12-06 05:06:56", "2014-12-06 05:06:56", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("567", "1", "2014-12-10 10:45:34", "2014-12-10 10:45:34", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/contactus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">ENQUIRY NOW </span></p> \r\n\r\nWhenever you think to buy luxury villas, temporary as well as permanent, we are always at your service to the fullest extent.\r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">OFFICE @ </span></p> \r\n\r\nPlot No 20, \r\nThe Exotic Near TTK Prestige,\r\nSipcot Phase 1,\r\nHosur - 635109.\r\n\r\n\r\n<strong>Mobile</strong> : +91 96591 09333\r\n\r\n\r\n<strong>Email</strong> : info@nandaavanaproperties.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2014-12-10 10:45:34", "2014-12-10 10:45:34", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("562", "1", "2014-12-06 05:08:40", "2014-12-06 05:08:40", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/contactus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">ENQUIRY NOW </span></p> \r\n\r\nWhenever you think to buy luxury villas, temporary as well as permanent, we are always at your service to the fullest extent.\r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">OFFICE @ </span></p> \r\n\r\nNo.L-82/A, 15th Cross,\r\n5th Main, 6th Sector, HSR Layout,\r\nBengaluru - 560 102.\r\n\r\n\r\n<strong>Mobile</strong> : +91 96591 09333\r\n<strong>Office</strong> : +91 080 4099 6703\r\n\r\n\r\n<strong>Email</strong> : info@nandaavanaproperties.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2014-12-06 05:08:40", "2014-12-06 05:08:40", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("563", "1", "2014-12-06 05:14:56", "2014-12-06 05:14:56", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-06 05:14:56", "2014-12-06 05:14:56", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("564", "1", "2014-12-06 05:16:05", "2014-12-06 05:16:05", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2e.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> HOSUR, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-06 05:16:05", "2014-12-06 05:16:05", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("572", "1", "2014-12-10 11:17:00", "2014-12-10 11:17:00", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides5.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to your OFFICE[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Centralized water system for round the clock[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-10 11:17:00", "2014-12-10 11:17:00", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("568", "1", "2014-12-10 10:45:55", "2014-12-10 10:45:55", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Avenue1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-10 10:45:55", "2014-12-10 10:45:55", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("571", "1", "2014-12-10 11:14:10", "2014-12-10 11:14:10", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides5.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to the HOSUR BUS STAND[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Over head tank with separate water connections for each site[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 4 kms from Hosur bus stand offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-10 11:14:10", "2014-12-10 11:14:10", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("573", "1", "2014-12-10 11:23:55", "2014-12-10 11:23:55", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides5.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to your OFFICE[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Centralized water system for round the clock[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/amenities2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-10 11:23:55", "2014-12-10 11:23:55", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("832", "1", "2015-03-25 11:20:23", "2015-03-25 11:20:23", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/slide4.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:35px; line-height:12px;\">ENQUIRY NOW </span></p> \r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:35px; line-height:12px;\">Reach Us </span></p> \r\n\r\n<span style=\"font-size:20px;\"><strong>Priyaa Construction</strong></span>\r\n1/445,Gandhi Nagar,\r\nBehind Premier Mill Quarters Belathur\r\nTamil Nadu - 635124\r\n<strong>Mobile</strong> : +91 9443303227, +91 9965830990\r\n<strong>Email</strong> : r.vasu72@yahoo.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2015-03-25 11:20:23", "2015-03-25 11:20:23", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("607", "1", "2014-12-11 06:34:11", "2014-12-11 06:34:11", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_gallery admin_label=\"Gallery\" fullwidth=\"on\" posts_number=\"6\" show_title_and_caption=\"on\" show_pagination=\"on\" background_layout=\"light\" gallery_ids=\"602,603,604,605,606\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Completed Projects", "", "inherit", "open", "open", "", "541-revision-v1", "", "", "2014-12-11 06:34:11", "2014-12-11 06:34:11", "", "541", "http://hrd.softons.cu.cc/541-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("609", "1", "2014-12-11 06:36:22", "2014-12-11 06:36:22", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_gallery admin_label=\"Gallery\" fullwidth=\"on\" posts_number=\"6\" show_title_and_caption=\"on\" show_pagination=\"on\" background_layout=\"light\" gallery_ids=\"602,603,604,605,606,608\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Completed Projects", "", "inherit", "open", "open", "", "541-revision-v1", "", "", "2014-12-11 06:36:22", "2014-12-11 06:36:22", "", "541", "http://hrd.softons.cu.cc/541-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("611", "1", "2014-12-11 10:24:31", "2014-12-11 10:24:31", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides5.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to your OFFICE[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Centralized water system for round the clock[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-11 10:24:31", "2014-12-11 10:24:31", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("613", "1", "2014-12-11 10:28:04", "2014-12-11 10:28:04", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides5.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to your OFFICE[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Centralized water system for round the clock[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-11 10:28:04", "2014-12-11 10:28:04", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1113", "1", "2016-03-22 12:37:29", "2016-03-22 12:37:29", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides22.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution - Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">What we do ?</h2>\r\n<p style=\"text-align:justify ;\">»  We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-align:center; font:size: 5px;\">Why our service</h2>\r\n<p style=\"text-align:left; \">\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line  </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">Commitment</h2>\r\n<p style=\"text-align:justify\" ;\"=\"\"> » We don\'t simply give services to customers; we tend to foster a long-run relationship that is close & confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:22px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s. Green Vision Technology,\r\n» 	M/s. KEF Infrastructure India Pvt. Ltd., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s. Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s. Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s. Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh,\r\n» 	M/s. ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiri\'s Mechanised Bakery Pvt. Ltd.\r\n»	M/s. Sobha Developers .Ltd, Bommasandra.\r\n»	M/s. Sobha Developers Ltd., Rajasthan\r\n»	M/s. Mukundan Diary Products Ltd.,\r\n»	M/s. Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s. Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-22 12:37:29", "2016-03-22 12:37:29", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1109", "1", "2016-03-22 12:28:09", "2016-03-22 12:28:09", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1 style=\"color:#8224e3;\">Manpower Provider</h1>\r\n\r\n<p style=\"text-align:justify;\">We are one of the leading manpower service providers, engaged in all sectors such as Automobiles, Engineering, Construction, Chemical, Pharma, Diary, Electronics and Hospitality Services. Our organization has gained huge appreciation from the clients due to its highly efficient and professionally managed services that are supported by timely execution and high quality standards.</p>\r\n\r\n\r\n<p style=\"text-align:justify;\"> We provide Fresher/Experienced trained manpower to our clients as per the specific requirement of the client. We provide equipment ready manpower as per the specifications received from Client on short notice. These manpower helps the clients to reduce operations cost and thus directly helps in short or long term skilled resources requirements.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"color:#8224e3;\">We provide following type of manpower with equipment support to our clients:</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Accounts\r\n» Admin\r\n» Human resource\r\n» Engineering[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Maintenance\r\n» Supervisor\r\n» Fitters and Welders\r\n» MEP - Mechanical, Electrical, Plumbing[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Insulators\r\n» Steel Fixtures\r\n» Carpenter\r\n» Skilled and unskilled labour[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides101.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Manpower Provider", "", "inherit", "open", "open", "", "1002-revision-v1", "", "", "2016-03-22 12:28:09", "2016-03-22 12:28:09", "", "1002", "http://hrd.softons.cu.cc/1002-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1110", "1", "2016-03-22 12:31:51", "2016-03-22 12:31:51", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1 style=\"color:#8224e3;\">Manpower Provider</h1>\r\n\r\n<p style=\"text-align:justify;\">We are one of the leading manpower service providers, engaged in all sectors such as Automobiles, Engineering, Construction, Chemical, Pharma, Diary, Electronics and Hospitality Services. Our organization has gained huge appreciation from the clients due to its highly efficient and professionally managed services that are supported by timely execution and high quality standards.</p>\r\n\r\n\r\n<p style=\"text-align:justify;\"> We provide Fresher/Experienced trained manpower to our clients as per the specific requirement of the client. We provide equipment ready manpower as per the specifications received from Client on short notice. These manpower helps the clients to reduce operations cost and thus directly helps in short or long term skilled resources requirements.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"color:#8224e3;\">We provide following type of manpower with equipment support to our clients:</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Accounts\r\n» Admin\r\n» Human resource\r\n» Engineering[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Maintenance\r\n» Supervisor\r\n» Fitters and Welders\r\n» MEP - Mechanical, Electrical, Plumbing[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Industrial Insulators\r\n» Foreman Steel Fixer\r\n» Carpenter\r\n» Skilled and unskilled labour[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides101.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Manpower Provider", "", "inherit", "open", "open", "", "1002-revision-v1", "", "", "2016-03-22 12:31:51", "2016-03-22 12:31:51", "", "1002", "http://hrd.softons.cu.cc/1002-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1112", "1", "2016-03-22 12:34:08", "2016-03-22 12:34:08", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/About-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/companyprofile-new.jpg\" alt=\"companyprofile-new\" width=\"195\" height=\"47\" class=\"alignnone size-full wp-image-980\">\r\n<p style=\"text-align: justify;\">We proudly introduce ourselves “HRD Integrated Manpower Solution” manpower supply service business has been started during June, 2011. It is  a well-established  manpower service providers in the Hosur area. Our company is operating actively from its base location/office in Hosur. We exclusively undertake Manpower , Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. We have a versatile databank, which is being updated on continuous basis through advertisement and professional contact. </p>\r\n<p style=\"text-align: justify;\"><strong>We have separate strong and experienced 5 teams has follows,</strong></p>\r\n	» Administration\r\n        » Human Resources\r\n	» Marketing \r\n	» Business Associates / Site Supervisors\r\n	» Legal/Statutory records[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">Currently, we have deployed around 1000 employees in our roll predominantly to the different types of companies as furnished below.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Automobile Industries\r\n» General Engineering Industries\r\n» Pharmaceutical Industries\r\n» Chemical industries\r\n» Foods & Dairy Farms, FMCG\r\n» Consumer Products and Process Industries\r\n» Precast Concrete Industries\r\n» Electrical & Electronics Industries\r\n» Interior decoration industries etc.,[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/manpower-graphic-278x300.png\" alt=\"manpower-graphic\" width=\"278\" height=\"300\" class=\"alignnone size-medium wp-image-976\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">We are providing its services from thorough knowledge of the needs of its end users. The integrated facility manpower (Graduates, Diplomas, I T Is, Skilled, semiskilled, unskilled, House Keeping, Executive Drivers etc., ) supply services maximize value and provide efficient services at lower operating costs, maintaining high service levels. Our approach is based upon creating an experienced customer focused management team based on proven management principles. The emphasis is on delivering lifetime care for our client’s critical assets; improve efficiency, productivity and profitability. Our aim is to provide cost effective value for money service.</p>\r\n\r\n<p style=\"text-align: justify;\">We would like to join together with our clients on long term basis in providing value added and timely service for all your HR/Manpower requirements. Our clientele consist of around 15 major companies in and around, Hosur and Bangalore.</p>\r\n\r\n\r\n<p style=\"text-align: justify;\">Further, we proudly inform to you that we have another one joint venture which was a mother concern was started during August, 2001 in the name of <strong>“M/s.Divya Manpower Resources Pvt. Ltd.,” </strong>for our administrative convenience. We have 20 valuable clients in this name.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Profile", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2016-03-22 12:34:08", "2016-03-22 12:34:08", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1103", "1", "2016-03-22 11:32:50", "2016-03-22 11:32:50", "", "LOGO-HRD", "", "inherit", "open", "open", "", "logo-hrd-6", "", "", "2016-03-22 11:32:50", "2016-03-22 11:32:50", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2016/03/LOGO-HRD3.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("1105", "1", "2016-03-22 12:22:55", "2016-03-22 12:22:55", "", "web_globe_solution-512", "", "inherit", "open", "open", "", "web_globe_solution-512", "", "", "2016-03-22 12:22:55", "2016-03-22 12:22:55", "", "304", "http://hrd.softons.cu.cc/wp-content/uploads/2014/12/web_globe_solution-512.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("1106", "1", "2016-03-22 12:25:55", "2016-03-22 12:25:55", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/contact-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Enquiry Now </span></p> \r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224E3; font-size:35px; line-height:12px;\">Reach Us </span></p>\r\n\r\n<span style=\"font-size:15px;\"><strong>HRD INTEGRATED MANPOWER SOLUTION</strong></span>\r\nNo. 1st Floor, Dharani Complex , \r\nNear Muthumariamman Temple, Sipcot Post,\r\nDharga, Hosur(tk), Krishnagiri(dt),\r\nTamil Nadu - 635126.\r\n<strong>Land Line</strong> :  04344 – 276172\r\n<strong>Mobile</strong>    : +91 9362310019, +91 9626785460\r\n<strong>Email</strong> : hr@hrdmanpower.com, \r\nsivan@hrdmanpower.com, \r\nadmin@hrdmanpower.com, \r\nmarketing@hrdmanpower.com.\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/web_globe_solution-512.png\" alt=\"web_globe_solution-512\" width=\"220\" height=\"40\" class=\"alignnone size-full wp-image-1105\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-autosave-v1", "", "", "2016-03-22 12:25:55", "2016-03-22 12:25:55", "", "304", "http://hrd.softons.cu.cc/304-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1107", "1", "2016-03-22 12:25:46", "2016-03-22 12:25:46", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/contact-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Enquiry Now </span></p> \r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224E3; font-size:35px; line-height:12px;\">Reach Us </span></p>\r\n\r\n<span style=\"font-size:15px;\"><strong>HRD INTEGRATED MANPOWER SOLUTION</strong></span>\r\nNo. 1st Floor, Dharani Complex , \r\nNear Muthumariamman Temple, Sipcot Post,\r\nDharga, Hosur(tk), Krishnagiri(dt),\r\nTamil Nadu - 635126.\r\n<strong>Land Line</strong> :  04344 – 276172\r\n<strong>Mobile</strong>    : +91 9362310019, +91 9626785460\r\n<strong>Email</strong> : hr@hrdmanpower.com, \r\nsivan@hrdmanpower.com, \r\nadmin@hrdmanpower.com, \r\nmarketing@hrdmanpower.com.\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/web_globe_solution-512.png\" alt=\"web_globe_solution-512\" width=\"220\" height=\"40\" class=\"alignnone size-full wp-image-1105\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2016-03-22 12:25:46", "2016-03-22 12:25:46", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1108", "1", "2016-03-22 12:27:42", "2016-03-22 12:27:42", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1 style=\"color:#8224e3;\">Manpower Provider</h1>\r\n\r\n<p style=\"text-align:justify;\">We are one of the leading manpower service providers, engaged in all sectors such as Automobiles, Engineering, Construction, Chemical, Pharma, Diary, Electronics and Hospitality Services. Our organization has gained huge appreciation from the clients due to its highly efficient and professionally managed services that are supported by timely execution and high quality standards.</p>\r\n\r\n\r\n<p style=\"text-align:justify;\"> We provide Fresher/Experienced trained manpower to our clients as per the specific requirement of the client. We provide equipment ready manpower as per the specifications received from Client on short notice. These manpower helps the clients to reduce operations cost and thus directly helps in short or long term skilled resources requirements.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"color:#8224e3;\">We provide following type of manpower with equipment support to our clients:</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Accounts\r\n» Admin\r\n» Human resource\r\n» Engineering[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Maintenance\r\n» Supervisor\r\n» Fitters and Welders\r\n» MEP - Mechanical, Electrical, Plumbimg[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Insulators\r\n» Steel Fixtures\r\n» Carpenter\r\n» Skilled and unskilled labour[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides101.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Manpower Provider", "", "inherit", "open", "open", "", "1002-revision-v1", "", "", "2016-03-22 12:27:42", "2016-03-22 12:27:42", "", "1002", "http://hrd.softons.cu.cc/1002-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1096", "1", "2016-03-22 11:23:16", "2016-03-22 11:23:16", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/About-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/companyprofile-new.jpg\" alt=\"companyprofile-new\" width=\"195\" height=\"47\" class=\"alignnone size-full wp-image-980\">\r\n<p style=\"text-align: justify;\">We proudly introduce ourselves “HRD Integrated Manpower Solution” manpower supply service business has been started during June, 2011. It is  a well-established  manpower service providers in the Hosur area. Our company is operating actively from its base location/office in Hosur. We exclusively undertake Manpower , Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. We have a versatile databank, which is being updated on continuous basis through advertisement and professional contact. </p>\r\n<p style=\"text-align: justify;\"><strong>We have separate strong and experienced 5 teams has follows,</strong></p>\r\n	» Administration\r\n        » Human Resources\r\n	» Marketing \r\n	» Business Associates / Site Supervisors\r\n	» Legal/Statutory.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">Currently, we have deployed around 1000 employees in our roll predominantly to the different types of companies as furnished below.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Automobile and Engineering Industries\r\n» Manufacturing Industries\r\n» Pharmaceutical Industries\r\n» Chemical industries \r\n» Automobile and Light Engineering industries \r\n» Foods &amp; Dairy Farms, FMGC \r\n» Consumer Products and Process Industries\r\n» Civil / Construction companies \r\n» Electrical &amp; Electronics Industries\r\n» Interior decoration industries etc.,\r\n» Protective Packaging Industries.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/manpower-graphic-278x300.png\" alt=\"manpower-graphic\" width=\"278\" height=\"300\" class=\"alignnone size-medium wp-image-976\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">We are providing its services from thorough knowledge of the needs of its end users. The integrated facility manpower (Graduates, Diplomas, I T Is, Skilled, semiskilled, unskilled, House Keeping, Executive Drivers etc., ) supply services maximize value and provide efficient services at lower operating costs, maintaining high service levels. Our approach is based upon creating an experienced customer focused management team based on proven management principles. The emphasis is on delivering lifetime care for our client’s critical assets; improve efficiency, productivity and profitability. Our aim is to provide cost effective value for money service.</p>\r\n\r\n<p style=\"text-align: justify;\">We would like to join together with our clients on long term basis in providing value added and timely service for all your HR/Manpower requirements. Our clientele consist of around 15 major companies in and around, Hosur and Bangalore.</p>\r\n\r\n\r\n<p style=\"text-align: justify;\">Further, we proudly inform to you that we have another one joint venture which was a mother concern was started during August, 2001 in the name of <strong>“M/s.Divya Manpower Resources Pvt. Ltd.,” </strong>for our administrative convenience. We have 20 valuable clients in this name.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Profile", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2016-03-22 11:23:16", "2016-03-22 11:23:16", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("625", "1", "2014-12-31 05:20:29", "2014-12-31 05:20:29", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\"><strong>NANDAAVANA PROPERTIES</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Our Vision</span>\r\n<p style=\"text-align: justify;\">Homes for one and all Ã¢â‚¬â€œ changing lifestyles for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">&nbsp;Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Price\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"100\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row]</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\">NANDAAVANA PROPERTIES has been one of the leading developers in HOSUR &amp; BANGALORE</span></p>\r\n<p style=\"text-align:center;\">Nandaavana Properties can provide a complete range of amenities to ensure that you enjoy your stay with us. </p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2014-12-31 05:20:29", "2014-12-31 05:20:29", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("628", "1", "2014-12-31 05:32:00", "2014-12-31 05:32:00", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides-2c1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slidesa2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">LAST CHANCE TO BE A PART OF<strong> THE EXOTIC </strong></span></p> \r\nTAKE THE ADVANTAGES OF EXOTIC &amp; ENJOY THE HASSLE FREE HOME[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#009035; font-size:25px; line-height:12px;\"><b>JUST CLICK !!! BOOK &amp; START LIVING !!! </b></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Gated-Community.png\" title=\"Gated Community\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Fully gated community with round the clock security[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Accessibility1.png\" title=\"Accessibility\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]It has close proximity to your OFFICE[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Kids-Play-Area1.png\" title=\"Kids Play Area\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Exclusive and Landscaped greens Children Play Area[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Water-Supply.png\" title=\"Water Supply\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Centralized water system for round the clock[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2014-12-31 05:32:00", "2014-12-31 05:32:00", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1092", "1", "2016-03-22 05:44:59", "2016-03-22 05:44:59", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides22.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution - Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">What we do ?</h2>\r\n<p style=\"text-align:justify ;\">»  We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-align:center; font:size: 5px;\">Why our service</h2>\r\n<p style=\"text-align:left; \">\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line  </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">Commitment</h2>\r\n<p style=\"text-align:justify\" ;\"=\"\"> » We don\'t simply give services to customers; we tend to foster a long-run relationship that is close & confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:22px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s. Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. Ltd., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s. Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s. Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s. Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s. ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s. Sobha Developers .Ltd, Bommasandra.\r\n»	M/s. Sobha Developers Ltd., Rajasthan\r\n»	M/s. Mukundan Diary Products Ltd.,\r\n»	M/s. Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s. Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-22 05:44:59", "2016-03-22 05:44:59", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1093", "1", "2016-03-22 11:17:39", "2016-03-22 11:17:39", "", "Recruitment", "", "inherit", "open", "open", "", "recruitment-2", "", "", "2016-03-22 11:17:39", "2016-03-22 11:17:39", "", "1007", "http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Recruitment.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1094", "1", "2016-03-22 11:18:36", "2016-03-22 11:18:36", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Recruitment.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Recruitment</span></p>\r\n<p style=\"text-align:justify;\">HRD INTEGRATED MANPOWER SOLUTION is basically an organization completely deals with manpower consulting. In that we are associating with a huge number of firms. We are doing recruitment services for other organizations. This is commonly doing after the complete analysis of employer. </p>\r\n<p style=\"text-align:justify;\">We are following international recruitment standards. We are selecting very suitable candidates from every recruitment. Our IT recruitment procedures are famous in all the software industry. </p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">We, at HRD INTEGRATED MANPOWER SOLUTION, are specialized in providing proficient Manpower Recruitment solutions to the companies, looking for suitable manpower for their job requirements. We cater to the diverse manpower needs of all the industries such as Engineering, Iron &amp; Steel, Power, Real Estate, FMCG, Retail, IT/ ITES, Healthcare, Logistics, Hospitality, and many others. </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit.jpg\" alt=\"recruit\" width=\"673\" height=\"199\" class=\"alignnone size-full wp-image-1027\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">We have developed a rich database of the candidates who can fit in the different job roles offered by the companies. Moreover, we are capable of providing suitable fresher or experienced candidates as per the requirement of the client.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:25px; line-height:12px;\">Recruitment On Demand</span></p>\r\nThe Recruiting On-Demand model is perfect for those who need recruiting on a periodic basis. If your recruiting cycles require peak-period support, you will have all the benefits of a fully staffed recruiting department without the related cost of maintaining and housing that overhead during down or non-hire periods. Moreover, for proficient & cost-effective Recruitment On Demand solutions, you can contact to HRD INTEGRATED MANPOWER SOLUTION.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit1.jpg\" alt=\"recruit1\" width=\"1920\" height=\"810\" class=\"alignnone size-full wp-image-1038\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Recruitment", "", "inherit", "open", "open", "", "1007-revision-v1", "", "", "2016-03-22 11:18:36", "2016-03-22 11:18:36", "", "1007", "http://hrd.softons.cu.cc/1007-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("834", "1", "2015-03-25 11:34:05", "2015-03-25 11:34:05", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\" alt=\"\">&nbsp;Client Orientation</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teeming millions with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n\r\n<span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\" alt=\"\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">We are committed to meet the expectations of our customers, through our Well experienced and established service delivery system, that is sensitive and accommodative to continuous technology up gradation and value analysis.Create world-class eco friendly homes with the highest standards of professionalism, ethics, quality and customer service.\r\n\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/CoreValues-295x300.jpg\" alt=\"CoreValues\" width=\"400\" class=\"alignnone size-medium wp-image-767\">\r\n\r\n\r\n\r\n [/wc_column][/wc_row][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#fff; font-size:25px; line-height:12px;\">PRIYAA CONSTRUCTION has been one of the leading developers in HOSUR </span></p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutusbottom.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-25 11:34:05", "2015-03-25 11:34:05", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("833", "1", "2015-03-25 11:33:01", "2015-03-25 11:33:01", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\" alt=\"\">&nbsp;Client Orientation</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teeming millions with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n\r\n<span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\" alt=\"\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">We are committed to meet the expectations of our customers, through our Well experienced and established service delivery system, that is sensitive and accommodative to continuous technology up gradation and value analysis.Create world-class eco friendly homes with the highest standards of professionalism, ethics, quality and customer service.\r\n\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/CoreValues-295x300.jpg\" alt=\"CoreValues\" width=\"400\" class=\"alignnone size-medium wp-image-767\">\r\n\r\n\r\n\r\n [/wc_column][/wc_row][/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#81d742\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\">PRIYAA CONSTRUCTION has been one of the leading developers in HOSUR </span></p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutusbottom.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-25 11:33:01", "2015-03-25 11:33:01", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1089", "1", "2016-03-22 04:40:02", "2016-03-22 04:40:02", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/contact-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Enquiry Now </span></p> \r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224E3; font-size:35px; line-height:12px;\">Reach Us </span></p>\r\n\r\n<span style=\"font-size:15px;\"><strong>HRD INTEGRATED MANPOWER SOLUTION</strong></span>\r\nNo. 1st Floor, Dharani Complex , \r\nNear Muthumariamman Temple, Sipcot Post,\r\nDharga, Hosur(tk), Krishnagiri(dt),\r\nTamil Nadu - 635126.\r\n<strong>Land Line</strong> :  04344 – 276172\r\n<strong>Mobile</strong>    : +91 9362310019, +91 9626785460\r\n<strong>Email</strong> : hr@hrdmanpower.com, \r\nsivan@hrdmanpower.com, \r\nadmin@hrdmanpower.com, \r\nmarketing@hrdmanpower.com.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2016-03-22 04:40:02", "2016-03-22 04:40:02", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1088", "1", "2016-03-22 04:34:52", "2016-03-22 04:34:52", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/contact-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Enquiry Now </span></p> \r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224E3; font-size:35px; line-height:12px;\">Reach Us </span></p> \r\n\r\n<span style=\"font-size:15px;\"><strong>HRD INTEGRATED MANPOWER SOLUTION</strong></span>\r\nNo. 1st Floor, Dharani Complex , \r\nNear Muthumariamman Temple, Sipcot Post,\r\nDharga, Hosur(tk), Krishnagiri(dt),\r\nTamil Nadu - 635126.\r\n<strong>Land Line</strong> :  04344 – 276172\r\n<strong>Mobile</strong>    : +91 9362310019, +91 9626785460\r\n<strong>Email</strong>     : hrdintegratedman@gmail.com,\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;sivanannamalai1975@gmail.com.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2016-03-22 04:34:52", "2016-03-22 04:34:52", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1090", "1", "2016-03-22 05:01:59", "2016-03-22 05:01:59", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/testimonial1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Testimonial</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d8d8d8\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\r\n“A very good, informative service. HRD Integrated Manpower Solution got back to me very quickly regarding interviews and offer letters. A much recommended company in IT recruitment.  They kept me up to date with all the details leading up to my offer and acceptance – many thanks to them for a great service.”</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong>  Mr.Durai - Officer HR - KEF Infrastructure India Pvt Ltd., </strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"I have been trying for Software job for the past 2 years. HRD Integrated Manpower Solution helped me to get job in Software Company. They trained me how to get through the interview successfully.\"</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> Mr. Srinivasan - Manager HR - Micro Labs Ltd.,</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"I tried for jobs for so many years and finally I got job in Bangalore according to my skills and experience. HRD Integrated Manpower Solution helps me to get Placement in MNC Company in Bangalore.\"</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> Mr. Punniamoorthy - HR Admin - Jayasree Polymers Pvt Ltd.,</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"The service received has been very good. HRD Integrated Manpower Solution has been in regular contact with me to check my progress. I have been pleased with the regular contact and when I have a query HRD Integrated Manpower Solution have always been there to help.”</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> -Shravan, Chennai</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\r\n“Very Positive! Staffs are always helpful and obliging. Also they found me the exact job that I wanted in the location that I wanted. They also helped my friends to get some suitable jobs”</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> -Siva, Hosur</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.\"</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> - Priya, Bangalore</strong></p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2016-03-22 05:01:59", "2016-03-22 05:01:59", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1091", "1", "2016-03-22 05:12:21", "2016-03-22 05:12:21", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/testimonial1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Testimonial</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d8d8d8\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\r\n“A very good, informative service. HRD Integrated Manpower Solution got back to me very quickly regarding interviews and offer letters. A much recommended company in IT recruitment.  They kept me up to date with all the details leading up to my offer and acceptance – many thanks to them for a great service.”</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong>  Mr.Durai - Officer HR - KEF Infrastructure India Pvt Ltd., </strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"I have been trying for Software job for the past 2 years. HRD Integrated Manpower Solution helped me to get job in Software Company. They trained me how to get through the interview successfully.\"</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> Mr. Srinivasan - Manager HR - Micro Labs Ltd.,</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"I tried for jobs for so many years and finally I got job in Bangalore according to my skills and experience. HRD Integrated Manpower Solution helps me to get Placement in MNC Company in Bangalore.\"</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> Mr. Punniamoorthy - HR Admin - Jayashree Polymers Pvt Ltd.,</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"The service received has been very good. HRD Integrated Manpower Solution has been in regular contact with me to check my progress. I have been pleased with the regular contact and when I have a query HRD Integrated Manpower Solution have always been there to help.”</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> -Shravan, Chennai</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\r\n“Very Positive! Staffs are always helpful and obliging. Also they found me the exact job that I wanted in the location that I wanted. They also helped my friends to get some suitable jobs”</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> -Siva, Hosur</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.\"</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> - Priya, Bangalore</strong></p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2016-03-22 05:12:21", "2016-03-22 05:12:21", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1086", "1", "2016-03-21 12:25:18", "2016-03-21 12:25:18", "", "Slides2", "", "inherit", "open", "open", "", "slides2-3", "", "", "2016-03-21 12:25:18", "2016-03-21 12:25:18", "", "22", "http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides22.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1087", "1", "2016-03-21 12:25:28", "2016-03-21 12:25:28", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides22.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">What we do ?</h2>\r\n<p style=\"text-align:justify ;\">»  We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-align:center; font:size: 5px;\">Why our service</h2>\r\n<p style=\"text-align:left; \">\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line  </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">Commitment</h2>\r\n<p style=\"text-align:justify\" ;\"=\"\"> » We don\'t simply give services to customers; we tend to foster a long-run relationship that is close & confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:22px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s. Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. Ltd., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s. Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s. Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s. Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s. ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s. Sobha Developers .Ltd, Bommasandra.\r\n»	M/s. Sobha Developers Ltd., Rajasthan\r\n»	M/s. Mukundan Diary Products Ltd.,\r\n»	M/s. Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s. Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-21 12:25:28", "2016-03-21 12:25:28", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1076", "1", "2016-03-18 10:35:34", "2016-03-18 10:35:34", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: left;\"><span style=\"color: #8224e3; font-size: 30px; line-height: 12px;\">Licensing / Statutory </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens6.jpg\" alt=\"licens6\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1061\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens5.jpg\" alt=\"licens5\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1060\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#c1c1c1\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#c1c1c1\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens1.jpg\" alt=\"licens1\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1056\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens2.jpg\" alt=\"licens2\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1057\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#c1c1c1\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens3.jpg\" alt=\"licens3\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1058\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens4.jpg\" alt=\"licens4\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1059\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Liscensing", "", "inherit", "open", "open", "", "1052-revision-v1", "", "", "2016-03-18 10:35:34", "2016-03-18 10:35:34", "", "1052", "http://hrd.softons.cu.cc/1052-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1078", "1", "2016-03-19 06:15:08", "2016-03-19 06:15:08", "", "favicon", "", "inherit", "open", "open", "", "favicon-5", "", "", "2016-03-19 06:15:08", "2016-03-19 06:15:08", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2016/03/favicon1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("1083", "1", "2016-03-21 12:15:14", "2016-03-21 12:15:14", "", "Slides2", "", "inherit", "open", "open", "", "slides2-2", "", "", "2016-03-21 12:15:14", "2016-03-21 12:15:14", "", "22", "http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides21.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1084", "1", "2016-03-21 12:15:26", "2016-03-21 12:15:26", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides21.jpg\" background_color=\"#ffffff\" alignment=\"bottom\" background_layout=\"dark\"]<a href=\"http://hrd.softons.cu.cc/contact-us/\"><img class=\"alignright wp-image-916 size-full\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Get_Started_Button-2.png\" alt=\"Get_Started_Button-2\" width=\"280\" height=\"74\" align=\"right\" border=\"0\"></a>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform: uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">What we do ?</h2>\r\n<p style=\"text-align:justify ;\">»  We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-align:center; font:size: 5px;\">Why our service</h2>\r\n<p style=\"text-align:left; \">\r\n»  100% customer Satisfactions\r\n»  Highly qualified and experienced Staff\r\n»  Efficient use of resources\r\n»  Building a competitive edge\r\n»  High quality of service\r\n»  Focus more on core business line  </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/commetment.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"text-align:center; font:size: 5px;\">Commitment</h2>\r\n<p style=\"text-align:justify\" ;\"=\"\"> » We don\'t simply give services to customers; we tend to foster a long-run relationship that is close & confidential. HRD INTEGRATED MANPOWER SOLUTION is committed to incessantly improve and exceed client expectation with relevancy timeliness.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides41.jpg\" background_color=\"#ffffff\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:; font-size:35px; line-height:22px;\"> SOME OF OUR CLIENTS FOR SUPPLYING MANPOWER</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<span style=\"font-size:25px;\">HOSUR (TN)</span>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n» 	M/s. Micro Labs Ltd., Unit I,\r\n»       M/s. Green Vision Technology\r\n» 	M/s. KEF Infrastructure India Pvt. Ltd., \r\n» 	M/s. Jayashree Polymers Pvt. Ltd.,\r\n» 	M/s. Luminous Power Technologies Pvt. Ltd.,\r\n» 	M/s. Supreme Industries Ltd., Unit – I &amp; II\r\n» 	M/s. Ritway Packages Pvt. Ltd.,\r\n» 	M/s. Dr.Lalpath Labs Pvt. Ltd., in T N, Kerala and Andhra Pradesh.\r\n» 	M/s. ACS Electrical Equipments Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"font-size:25px;\">BANGALORE</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\">\r\n»       M/s. The Nilgiri Dairy Farms (P) Ltd.\r\n»	M/s. Micro Labs Limited, (Veerasandra)\r\n»	M/s. Nilgiris Mechanized Bakery Pvt. Ltd.\r\n»	M/s. Sobha Developers .Ltd, Bommasandra.\r\n»	M/s. Sobha Developers Ltd., Rajasthan\r\n»	M/s. Mukundan Diary Products Ltd.,\r\n»	M/s. Bangalore Safety Glass Works Pvt. Ltd.,\r\n»	M/s. Prakash Seating Pvt. Ltd.,\r\n\r\n</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1><span style=\"color:#fff; text-transform:uppercase;\"><b>We can help you to find the right candidate with right skills from anywhere.</b></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-21 12:15:26", "2016-03-21 12:15:26", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1066", "1", "2016-03-18 06:08:15", "2016-03-18 06:08:15", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: left;\"><span style=\"color: #8224e3; font-size: 30px; line-height: 12px;\">Licensing / Statutory </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#c1c1c1\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens1.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens1.jpg\" alt=\"licens1\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1056\" /></a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens2.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens2.jpg\" alt=\"licens2\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1057\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#c1c1c1\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens3.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens3.jpg\" alt=\"licens3\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1058\" /></a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens4.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens4.jpg\" alt=\"licens4\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1059\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#c1c1c1\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens5.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens5.jpg\" alt=\"licens5\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1060\" /></a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens6.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens6.jpg\" alt=\"licens6\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1061\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Liscensing", "", "inherit", "open", "open", "", "1052-revision-v1", "", "", "2016-03-18 06:08:15", "2016-03-18 06:08:15", "", "1052", "http://hrd.softons.cu.cc/1052-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1069", "1", "2016-03-18 06:24:00", "2016-03-18 06:24:00", " ", "", "", "publish", "open", "open", "", "1069", "", "", "2016-03-18 10:43:15", "2016-03-18 10:43:15", "", "0", "http://hrd.softons.cu.cc/?p=1069", "7", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1070", "1", "2016-03-18 06:24:00", "2016-03-18 06:24:00", " ", "", "", "publish", "open", "open", "", "1070", "", "", "2016-03-18 10:43:15", "2016-03-18 10:43:15", "", "0", "http://hrd.softons.cu.cc/?p=1070", "6", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1071", "1", "2016-03-18 06:24:00", "2016-03-18 06:24:00", " ", "", "", "publish", "open", "open", "", "1071", "", "", "2016-03-18 10:43:15", "2016-03-18 10:43:15", "", "0", "http://hrd.softons.cu.cc/?p=1071", "5", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1072", "1", "2016-03-18 06:24:00", "2016-03-18 06:24:00", " ", "", "", "publish", "open", "open", "", "1072", "", "", "2016-03-18 10:43:15", "2016-03-18 10:43:15", "", "0", "http://hrd.softons.cu.cc/?p=1072", "8", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1073", "1", "2016-03-18 06:24:00", "2016-03-18 06:24:00", " ", "", "", "publish", "open", "open", "", "1073", "", "", "2016-03-18 10:43:15", "2016-03-18 10:43:15", "", "0", "http://hrd.softons.cu.cc/?p=1073", "3", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1062", "1", "2016-03-18 06:00:43", "2016-03-18 06:00:43", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: left;\"><span style=\"color: #8224e3; font-size: 30px; line-height: 12px;\">Licensing / Statutory </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens1.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens1.jpg\" alt=\"licens1\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1056\" /></a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens2.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens2.jpg\" alt=\"licens2\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1057\" /></a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens3.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens3.jpg\" alt=\"licens3\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1058\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens4.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens4.jpg\" alt=\"licens4\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1059\" /></a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens5.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens5.jpg\" alt=\"licens5\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1060\" /></a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens6.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens6.jpg\" alt=\"licens6\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1061\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Liscensing", "", "inherit", "open", "open", "", "1052-revision-v1", "", "", "2016-03-18 06:00:43", "2016-03-18 06:00:43", "", "1052", "http://hrd.softons.cu.cc/1052-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1068", "1", "2016-03-18 06:13:21", "2016-03-18 06:13:21", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: left;\"><span style=\"color: #8224e3; font-size: 30px; line-height: 12px;\">Licensing / Statutory </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#c1c1c1\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens1.jpg\" alt=\"licens1\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1056\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens2.jpg\" alt=\"licens2\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1057\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#c1c1c1\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens3.jpg\" alt=\"licens3\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1058\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens4.jpg\" alt=\"licens4\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1059\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#c1c1c1\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens6.jpg\" alt=\"licens6\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1061\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens5.jpg\" alt=\"licens5\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1060\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Liscensing", "", "inherit", "open", "open", "", "1052-revision-v1", "", "", "2016-03-18 06:13:21", "2016-03-18 06:13:21", "", "1052", "http://hrd.softons.cu.cc/1052-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1063", "1", "2016-03-18 06:04:14", "2016-03-18 06:04:14", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: left;\"><span style=\"color: #8224e3; font-size: 30px; line-height: 12px;\">Licensing / Statutory </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens1.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens1.jpg\" alt=\"licens1\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1056\" /></a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens2.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens2.jpg\" alt=\"licens2\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1057\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens3.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens3.jpg\" alt=\"licens3\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1058\" /></a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens4.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens4.jpg\" alt=\"licens4\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1059\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens5.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens5.jpg\" alt=\"licens5\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1060\" /></a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens6.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens6.jpg\" alt=\"licens6\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1061\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Liscensing", "", "inherit", "open", "open", "", "1052-revision-v1", "", "", "2016-03-18 06:04:14", "2016-03-18 06:04:14", "", "1052", "http://hrd.softons.cu.cc/1052-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1064", "1", "2016-03-18 06:05:26", "2016-03-18 06:05:26", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: left;\"><span style=\"color: #8224e3; font-size: 30px; line-height: 12px;\">Licensing / Statutory </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens1.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens1.jpg\" alt=\"licens1\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1056\" /></a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens2.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens2.jpg\" alt=\"licens2\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1057\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens3.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens3.jpg\" alt=\"licens3\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1058\" /></a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens4.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens4.jpg\" alt=\"licens4\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1059\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens5.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens5.jpg\" alt=\"licens5\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1060\" /></a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens6.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens6.jpg\" alt=\"licens6\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1061\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Liscensing", "", "inherit", "open", "open", "", "1052-revision-v1", "", "", "2016-03-18 06:05:26", "2016-03-18 06:05:26", "", "1052", "http://hrd.softons.cu.cc/1052-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1067", "1", "2016-03-18 06:11:17", "2016-03-18 06:11:17", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: left;\"><span style=\"color: #8224e3; font-size: 30px; line-height: 12px;\">Licensing / Statutory </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#c1c1c1\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens1.jpg\" alt=\"licens1\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1056\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens2.jpg\" alt=\"licens2\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1057\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#c1c1c1\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens3.jpg\" alt=\"licens3\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1058\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens4.jpg\" alt=\"licens4\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1059\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#c1c1c1\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens5.jpg\" alt=\"licens5\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1060\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens6.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens6.jpg\" alt=\"licens6\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1061\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Liscensing", "", "inherit", "open", "open", "", "1052-revision-v1", "", "", "2016-03-18 06:11:17", "2016-03-18 06:11:17", "", "1052", "http://hrd.softons.cu.cc/1052-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1065", "1", "2016-03-18 06:06:46", "2016-03-18 06:06:46", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: left;\"><span style=\"color: #8224e3; font-size: 30px; line-height: 12px;\">Licensing / Statutory </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens1.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens1.jpg\" alt=\"licens1\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1056\" /></a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens2.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens2.jpg\" alt=\"licens2\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1057\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens3.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens3.jpg\" alt=\"licens3\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1058\" /></a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens4.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens4.jpg\" alt=\"licens4\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1059\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens5.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens5.jpg\" alt=\"licens5\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1060\" /></a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens6.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens6.jpg\" alt=\"licens6\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1061\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Liscensing", "", "inherit", "open", "open", "", "1052-revision-v1", "", "", "2016-03-18 06:06:46", "2016-03-18 06:06:46", "", "1052", "http://hrd.softons.cu.cc/1052-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1049", "1", "2016-03-17 12:30:03", "2016-03-17 12:30:03", "", "Slides1", "", "inherit", "open", "open", "", "slides1-4", "", "", "2016-03-17 12:30:03", "2016-03-17 12:30:03", "", "1002", "http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1050", "1", "2016-03-17 12:32:53", "2016-03-17 12:32:53", "", "Slides10", "", "inherit", "open", "open", "", "slides10-2", "", "", "2016-03-17 12:32:53", "2016-03-17 12:32:53", "", "1002", "http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides101.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1097", "1", "2016-03-22 11:24:32", "2016-03-22 11:24:32", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1 style=\"color:#8224e3;\">Manpower Provider</h1>\r\n\r\n<p style=\"text-align:justify;\">We are one of the leading manpower service providers, engaged in all sectors such as Automobiles, Engineering, Construction, Chemical, Pharma, Diary, Electronics and Hospitality Services. Our organization has gained huge appreciation from the clients due to its highly efficient and professionally managed services that are supported by timely execution and high quality standards.</p>\r\n\r\n\r\n<p style=\"text-align:justify;\"> We provide Fresher/Experienced trained manpower to our clients as per the specific requirement of the client. We provide equipment ready manpower as per the specifications received from Client on short notice. These manpower helps the clients to reduce operations cost and thus directly helps in short or long term skilled resources requirements.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"color:#8224e3;\">We provide following type of manpower with equipment support to our clients:</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Accounting / Auditing\r\n»  Administration\r\n»  Advertising\r\n»  Agriculture\r\n»  Aviation/Airline\r\n»  Architecture\r\n»  Air Conditioning\r\n»  Automotive\r\n»  Banking &amp; Finance\r\n»  Biotechnology[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Business Support\r\n»  Computer / Software\r\n»  Computer / Hardware\r\n»  Construction / Civil Engineering\r\n»  Consulting Services\r\n»  Contract / Purchasing\r\n»  Distribution &amp; Logistics\r\n»  Education Training\r\n»  Energy &amp; Power\r\n»  Engineering\r\n»  Entertainment[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Health Care\r\n»  Hospitality\r\n»  Human Resources\r\n»  Insurance\r\n»  FMCG\r\n»  Graphic Designing\r\n»  Government Sector\r\n»  Information Technology (IT)\r\n»  Security[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides101.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Manpower Provider", "", "inherit", "open", "open", "", "1002-revision-v1", "", "", "2016-03-22 11:24:32", "2016-03-22 11:24:32", "", "1002", "http://hrd.softons.cu.cc/1002-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1051", "1", "2016-03-17 12:33:17", "2016-03-17 12:33:17", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1 style=\"color:#8224e3;\">Manpower Provider</h1>\r\n\r\n<p style=\"text-align:justify;\">We are one of the leading service providers, engaged in providing different kinds of services such as manpower consultancy, overseas manpower consultant, civil construction services, building contractor and civil maintenance services. Our organization has gained huge appreciation from the clients due to its highly efficient and professionally managed services that are supported by timely execution and high quality standards.</p>\r\n\r\n\r\n<p style=\"text-align:justify;\"> We provide Fresher/Experienced trained manpower to our clients as per the specific requirement of the client. We provide equipment ready manpower as per the specifications received from Client on short notice. These manpower helps the clients to reduce operations cost and thus directly helps in short or long term skilled resources requirements.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"color:#8224e3;\">We provide following type of manpower with equipment support to our clients:</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Accounting / Auditing\r\n»  Administration\r\n»  Advertising\r\n»  Agriculture\r\n»  Aviation/Airline\r\n»  Architecture\r\n»  Air Conditioning\r\n»  Automotive\r\n»  Banking &amp; Finance\r\n»  Biotechnology[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Distribution &amp; Logistics\r\n»  Education Training\r\n»  Energy &amp; Power\r\n»  Engineering\r\n»  Entertainment\r\n»  FMCG\r\n»  Graphic Designing\r\n»  Government Sector\r\n»  Information Technology (IT)\r\n»  Security[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Business Support\r\n»  Computer / Software\r\n»  Computer / Hardware\r\n»  Construction / Civil Engineering\r\n»  Consulting Services\r\n»  Contract / Purchasing\r\n»  Health Care\r\n»  Hospitality\r\n»  Human Resources\r\n»  Insurance[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides101.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Manpower Provider", "", "inherit", "open", "open", "", "1002-revision-v1", "", "", "2016-03-17 12:33:17", "2016-03-17 12:33:17", "", "1002", "http://hrd.softons.cu.cc/1002-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1095", "1", "2016-03-22 11:22:48", "2016-03-22 11:22:48", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/About-us.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/companyprofile-new.jpg\" alt=\"companyprofile-new\" width=\"195\" height=\"47\" class=\"alignnone size-full wp-image-980\">\r\n<p style=\"text-align: justify;\">We proudly introduce ourselves “HRD Integrated Manpower Solution” manpower supply service business has been started during June, 2011. It is  a well-established  manpower service providers in the Hosur area. Our company is operating actively from its base location/office in Hosur. We exclusively undertake Manpower, Labour Contract and related activities in and around Hosur, and Bangalore. We have young, energetic, experienced and result oriented teams alone, in the vein of integrated Manpower follow-up teams. We have a versatile databank, which is being updated on continuous basis through advertisement and professional contact. </p>\r\n<p style=\"text-align: justify;\"><strong>We have separate strong and experienced 5 teams has follows,</strong></p>\r\n	» Administration\r\n        » Human Resources\r\n	» Marketing \r\n	» Business Associates / Site Supervisors\r\n	» Legal/Statutory.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">Currently, we have deployed around 1000 employees in our roll predominantly to the different types of companies as furnished below.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Automobile and Engineering Industries\r\n» Manufacturing Industries\r\n» Pharmaceutical Industries\r\n» Chemical industries \r\n» Automobile and Light Engineering industries \r\n» Foods &amp; Dairy Farms, FMGC \r\n» Consumer Products and Process Industries\r\n» Civil / Construction companies \r\n» Electrical &amp; Electronics Industries\r\n» Interior decoration industries etc.,\r\n» Protective Packaging Industries.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/manpower-graphic-278x300.png\" alt=\"manpower-graphic\" width=\"278\" height=\"300\" class=\"alignnone size-medium wp-image-976\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify;\">We are providing its services from thorough knowledge of the needs of its end users. The integrated facility manpower (Graduates, Diplomas, I T Is, Skilled, semiskilled, unskilled, House Keeping, Executive Drivers etc., ) supply services maximize value and provide efficient services at lower operating costs, maintaining high service levels. Our approach is based upon creating an experienced customer focused management team based on proven management principles. The emphasis is on delivering lifetime care for our client’s critical assets; improve efficiency, productivity and profitability. Our aim is to provide cost effective value for money service.</p>\r\n\r\n<p style=\"text-align: justify;\">We would like to join together with our clients on long term basis in providing value added and timely service for all your HR/Manpower requirements. Our clientele consist of around 15 major companies in and around, Hosur and Bangalore.</p>\r\n\r\n\r\n<p style=\"text-align: justify;\">Further, we proudly inform to you that we have another one joint venture which was a mother concern was started during August, 2001 in the name of <strong>“M/s.Divya Manpower Resources Pvt. Ltd.,” </strong>for our administrative convenience. We have 20 valuable clients in this name.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Profile", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2016-03-22 11:22:48", "2016-03-22 11:22:48", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1054", "1", "2016-03-18 06:12:37", "2016-03-18 06:12:37", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: left;\"><span style=\"color: #8224e3; font-size: 30px; line-height: 12px;\">Licensing / Statutory </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#c1c1c1\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens1.jpg\" alt=\"licens1\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1056\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens2.jpg\" alt=\"licens2\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1057\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#c1c1c1\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens3.jpg\" alt=\"licens3\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1058\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens4.jpg\" alt=\"licens4\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1059\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#c1c1c1\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens5.jpg\" alt=\"licens5\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1060\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens6.jpg\" alt=\"licens6\" width=\"744\" height=\"941\" class=\"alignnone size-full wp-image-1061\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Liscensing", "", "inherit", "open", "open", "", "1052-autosave-v1", "", "", "2016-03-18 06:12:37", "2016-03-18 06:12:37", "", "1052", "http://hrd.softons.cu.cc/1052-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1055", "1", "2016-03-18 04:49:48", "2016-03-18 04:49:48", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: left;\"><span style=\"color: #8224e3; font-size: 30px; line-height: 12px;\">Licensing / Statutory </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Liscensing", "", "inherit", "open", "open", "", "1052-revision-v1", "", "", "2016-03-18 04:49:48", "2016-03-18 04:49:48", "", "1052", "http://hrd.softons.cu.cc/1052-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1056", "1", "2016-03-18 05:56:56", "2016-03-18 05:56:56", "", "licens1", "", "inherit", "open", "open", "", "licens1", "", "", "2016-03-18 05:56:56", "2016-03-18 05:56:56", "", "1052", "http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1057", "1", "2016-03-18 05:57:53", "2016-03-18 05:57:53", "", "licens2", "", "inherit", "open", "open", "", "licens2", "", "", "2016-03-18 05:57:53", "2016-03-18 05:57:53", "", "1052", "http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1058", "1", "2016-03-18 05:58:19", "2016-03-18 05:58:19", "", "licens3", "", "inherit", "open", "open", "", "licens3", "", "", "2016-03-18 05:58:19", "2016-03-18 05:58:19", "", "1052", "http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1059", "1", "2016-03-18 05:58:44", "2016-03-18 05:58:44", "", "licens4", "", "inherit", "open", "open", "", "licens4", "", "", "2016-03-18 05:58:44", "2016-03-18 05:58:44", "", "1052", "http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1060", "1", "2016-03-18 05:59:26", "2016-03-18 05:59:26", "", "licens5", "", "inherit", "open", "open", "", "licens5", "", "", "2016-03-18 05:59:26", "2016-03-18 05:59:26", "", "1052", "http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1061", "1", "2016-03-18 06:00:23", "2016-03-18 06:00:23", "", "licens6", "", "inherit", "open", "open", "", "licens6", "", "", "2016-03-18 06:00:23", "2016-03-18 06:00:23", "", "1052", "http://hrd.softons.cu.cc/wp-content/uploads/2016/03/licens6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1044", "1", "2016-03-17 11:51:14", "2016-03-17 11:51:14", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1 style=\"color:#8224e3;\">Manpower Provider</h1>\r\n\r\n<p style=\"text-align:justify;\">We are one of the leading service providers, engaged in providing different kinds of services such as manpower consultancy, overseas manpower consultant, civil construction services, building contractor and civil maintenance services. Our organization has gained huge appreciation from the clients due to its highly efficient and professionally managed services that are supported by timely execution and high quality standards.</p>\r\n\r\n\r\n<p style=\"text-align:justify;\"> We provide Fresher/Experienced trained manpower to our clients as per the specific requirement of the client. We provide equipment ready manpower as per the specifications received from Client on short notice. These manpower helps the clients to reduce operations cost and thus directly helps in short or long term skilled resources requirements.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"color:#8224e3;\">We provide following type of manpower with equipment support to our clients:</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Accounting / Auditing\r\n»  Administration\r\n»  Advertising\r\n»  Agriculture\r\n»  Aviation/Airline\r\n»  Architecture\r\n»  Air Conditioning\r\n»  Automotive\r\n»  Banking &amp; Finance\r\n»  Biotechnology\r\n»  Business Support\r\n»  Computer / Software\r\n»  Computer / Hardware\r\n»  Construction / Civil Engineering\r\n»  Consulting Services\r\n»  Contract / Purchasing[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]&raquo;  Distribution &amp; Logistics\r\n&raquo;  Education Training\r\n&raquo;  Energy &amp; Power\r\n&raquo;  Engineering\r\n&raquo;  Entertainment\r\n&raquo;  FMCG\r\n&raquo;  Graphic Designing\r\n&raquo;  Government Sector\r\n&raquo;  Health Care\r\n&raquo;  Hospitality\r\n&raquo;  Human Resources\r\n&raquo;  Insurance\r\n&raquo;  Information Technology (IT)\r\n&raquo;  Security\r\n&raquo;  Telecom\r\n&raquo;  Travel &amp; Tourism[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/manpower-img.jpg\" alt=\"manpower-img\" width=\"799\" height=\"743\" class=\"alignnone size-full wp-image-1041\" />[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Accounting / Auditing\r\n»  Administration\r\n»  Advertising\r\n»  Agriculture\r\n»  Aviation/Airline\r\n»  Architecture\r\n»  Air Conditioning\r\n»  Automotive\r\n»  Banking &amp; Finance\r\n»  Biotechnology\r\n»  Business Support\r\n»  Computer / Software\r\n»  Computer / Hardware\r\n»  Construction / Civil Engineering\r\n»  Consulting Services\r\n»  Contract / Purchasing[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/manpower-img.jpg\" alt=\"manpower-img\" width=\"799\" height=\"743\" class=\"alignnone size-full wp-image-1041\" />[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Accounting / Auditing\r\n»  Administration\r\n»  Advertising\r\n»  Agriculture\r\n»  Aviation/Airline\r\n»  Architecture\r\n»  Air Conditioning\r\n»  Automotive\r\n»  Banking &amp; Finance\r\n»  Biotechnology\r\n»  Business Support\r\n»  Computer / Software\r\n»  Computer / Hardware\r\n»  Construction / Civil Engineering\r\n»  Consulting Services\r\n»  Contract / Purchasing[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/manpower-img.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/manpower-img.jpg\" alt=\"manpower-img\" width=\"799\" height=\"743\" class=\"alignnone size-full wp-image-1041\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Manpower Provider", "", "inherit", "open", "open", "", "1002-revision-v1", "", "", "2016-03-17 11:51:14", "2016-03-17 11:51:14", "", "1002", "http://hrd.softons.cu.cc/1002-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1046", "1", "2016-03-17 11:58:23", "2016-03-17 11:58:23", "", "Slides10", "", "inherit", "open", "open", "", "slides10", "", "", "2016-03-17 11:58:23", "2016-03-17 11:58:23", "", "1002", "http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides10.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1047", "1", "2016-03-17 11:59:05", "2016-03-17 11:59:05", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1 style=\"color:#8224e3;\">Manpower Provider</h1>\r\n\r\n<p style=\"text-align:justify;\">We are one of the leading service providers, engaged in providing different kinds of services such as manpower consultancy, overseas manpower consultant, civil construction services, building contractor and civil maintenance services. Our organization has gained huge appreciation from the clients due to its highly efficient and professionally managed services that are supported by timely execution and high quality standards.</p>\r\n\r\n\r\n<p style=\"text-align:justify;\"> We provide Fresher/Experienced trained manpower to our clients as per the specific requirement of the client. We provide equipment ready manpower as per the specifications received from Client on short notice. These manpower helps the clients to reduce operations cost and thus directly helps in short or long term skilled resources requirements.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"color:#8224e3;\">We provide following type of manpower with equipment support to our clients:</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Accounting / Auditing\r\n»  Administration\r\n»  Advertising\r\n»  Agriculture\r\n»  Aviation/Airline\r\n»  Architecture\r\n»  Air Conditioning\r\n»  Automotive\r\n»  Banking &amp; Finance\r\n»  Biotechnology[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Distribution &amp; Logistics\r\n»  Education Training\r\n»  Energy &amp; Power\r\n»  Engineering\r\n»  Entertainment\r\n»  FMCG\r\n»  Graphic Designing\r\n»  Government Sector\r\n»  Information Technology (IT)\r\n»  Security[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Business Support\r\n»  Computer / Software\r\n»  Computer / Hardware\r\n»  Construction / Civil Engineering\r\n»  Consulting Services\r\n»  Contract / Purchasing\r\n»  Health Care\r\n»  Hospitality\r\n»  Human Resources\r\n»  Insurance[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides10.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section]", "Manpower Provider", "", "inherit", "open", "open", "", "1002-revision-v1", "", "", "2016-03-17 11:59:05", "2016-03-17 11:59:05", "", "1002", "http://hrd.softons.cu.cc/1002-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1045", "1", "2016-03-17 11:53:11", "2016-03-17 11:53:11", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1 style=\"color:#8224e3;\">Manpower Provider</h1>\r\n\r\n<p style=\"text-align:justify;\">We are one of the leading service providers, engaged in providing different kinds of services such as manpower consultancy, overseas manpower consultant, civil construction services, building contractor and civil maintenance services. Our organization has gained huge appreciation from the clients due to its highly efficient and professionally managed services that are supported by timely execution and high quality standards.</p>\r\n\r\n\r\n<p style=\"text-align:justify;\"> We provide Fresher/Experienced trained manpower to our clients as per the specific requirement of the client. We provide equipment ready manpower as per the specifications received from Client on short notice. These manpower helps the clients to reduce operations cost and thus directly helps in short or long term skilled resources requirements.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"color:#8224e3;\">We provide following type of manpower with equipment support to our clients:</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Accounting / Auditing\r\n»  Administration\r\n»  Advertising\r\n»  Agriculture\r\n»  Aviation/Airline\r\n»  Architecture\r\n»  Air Conditioning\r\n»  Automotive\r\n»  Banking &amp; Finance\r\n»  Biotechnology[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Distribution &amp; Logistics\r\n»  Education Training\r\n»  Energy &amp; Power\r\n»  Engineering\r\n»  Entertainment\r\n»  FMCG\r\n»  Graphic Designing\r\n»  Government Sector\r\n»  Information Technology (IT)\r\n»  Security[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Business Support\r\n»  Computer / Software\r\n»  Computer / Hardware\r\n»  Construction / Civil Engineering\r\n»  Consulting Services\r\n»  Contract / Purchasing\r\n»  Health Care\r\n»  Hospitality\r\n»  Human Resources\r\n»  Insurance[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Accounting / Auditing\r\n»  Administration\r\n»  Advertising\r\n»  Agriculture\r\n»  Aviation/Airline\r\n»  Architecture\r\n»  Air Conditioning\r\n»  Automotive\r\n»  Banking &amp; Finance\r\n»  Biotechnology\r\n»  Business Support\r\n»  Computer / Software\r\n»  Computer / Hardware\r\n»  Construction / Civil Engineering\r\n»  Consulting Services\r\n»  Contract / Purchasing[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]&raquo;  Distribution &amp; Logistics\r\n&raquo;  Education Training\r\n&raquo;  Energy &amp; Power\r\n&raquo;  Engineering\r\n&raquo;  Entertainment\r\n&raquo;  FMCG\r\n&raquo;  Graphic Designing\r\n&raquo;  Government Sector\r\n&raquo;  Health Care\r\n&raquo;  Hospitality\r\n&raquo;  Human Resources\r\n&raquo;  Insurance\r\n&raquo;  Information Technology (IT)\r\n&raquo;  Security\r\n&raquo;  Telecom\r\n&raquo;  Travel &amp; Tourism[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/manpower-img.jpg\" alt=\"manpower-img\" width=\"799\" height=\"743\" class=\"alignnone size-full wp-image-1041\" />[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Accounting / Auditing\r\n»  Administration\r\n»  Advertising\r\n»  Agriculture\r\n»  Aviation/Airline\r\n»  Architecture\r\n»  Air Conditioning\r\n»  Automotive\r\n»  Banking &amp; Finance\r\n»  Biotechnology\r\n»  Business Support\r\n»  Computer / Software\r\n»  Computer / Hardware\r\n»  Construction / Civil Engineering\r\n»  Consulting Services\r\n»  Contract / Purchasing[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/manpower-img.jpg\" alt=\"manpower-img\" width=\"799\" height=\"743\" class=\"alignnone size-full wp-image-1041\" />[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Accounting / Auditing\r\n»  Administration\r\n»  Advertising\r\n»  Agriculture\r\n»  Aviation/Airline\r\n»  Architecture\r\n»  Air Conditioning\r\n»  Automotive\r\n»  Banking &amp; Finance\r\n»  Biotechnology\r\n»  Business Support\r\n»  Computer / Software\r\n»  Computer / Hardware\r\n»  Construction / Civil Engineering\r\n»  Consulting Services\r\n»  Contract / Purchasing[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/manpower-img.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/manpower-img.jpg\" alt=\"manpower-img\" width=\"799\" height=\"743\" class=\"alignnone size-full wp-image-1041\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Manpower Provider", "", "inherit", "open", "open", "", "1002-revision-v1", "", "", "2016-03-17 11:53:11", "2016-03-17 11:53:11", "", "1002", "http://hrd.softons.cu.cc/1002-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1041", "1", "2016-03-17 11:44:06", "2016-03-17 11:44:06", "", "manpower-img", "", "inherit", "open", "open", "", "manpower-img", "", "", "2016-03-17 11:44:06", "2016-03-17 11:44:06", "", "1002", "http://hrd.softons.cu.cc/wp-content/uploads/2016/03/manpower-img.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1098", "1", "2016-03-22 11:25:30", "2016-03-22 11:25:30", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1 style=\"color:#8224e3;\">Manpower Provider</h1>\r\n\r\n<p style=\"text-align:justify;\">We are one of the leading manpower service providers, engaged in all sectors such as Automobiles, Engineering, Construction, Chemical, Pharma, Diary, Electronics and Hospitality Services. Our organization has gained huge appreciation from the clients due to its highly efficient and professionally managed services that are supported by timely execution and high quality standards.</p>\r\n\r\n\r\n<p style=\"text-align:justify;\"> We provide Fresher/Experienced trained manpower to our clients as per the specific requirement of the client. We provide equipment ready manpower as per the specifications received from Client on short notice. These manpower helps the clients to reduce operations cost and thus directly helps in short or long term skilled resources requirements.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"color:#8224e3;\">We provide following type of manpower with equipment support to our clients:</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Accounts\r\n» Admin\r\n» Human resource\r\n» Engineering[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Maintenance\r\n» Supervisor\r\n» Fitters\r\n» Welders[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]» Insulators\r\n» Steel\r\n» Fixtures\r\n» Carpenter, Skilled and unskilled lab[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides101.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Manpower Provider", "", "inherit", "open", "open", "", "1002-revision-v1", "", "", "2016-03-22 11:25:30", "2016-03-22 11:25:30", "", "1002", "http://hrd.softons.cu.cc/1002-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1042", "1", "2016-03-17 11:44:30", "2016-03-17 11:44:30", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1 style=\"color:#8224e3;\">Manpower Provider</h1>\r\n\r\n<p style=\"text-align:justify;\">We are one of the leading service providers, engaged in providing different kinds of services such as manpower consultancy, overseas manpower consultant, civil construction services, building contractor and civil maintenance services. Our organization has gained huge appreciation from the clients due to its highly efficient and professionally managed services that are supported by timely execution and high quality standards.</p>\r\n\r\n\r\n<p style=\"text-align:justify;\"> We provide Fresher/Experienced trained manpower to our clients as per the specific requirement of the client. We provide equipment ready manpower as per the specifications received from Client on short notice. These manpower helps the clients to reduce operations cost and thus directly helps in short or long term skilled resources requirements.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"color:#8224e3;\">We provide following type of manpower with equipment support to our clients:</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Accounting / Auditing\r\n»  Administration\r\n»  Advertising\r\n»  Agriculture\r\n»  Aviation/Airline\r\n»  Architecture\r\n»  Air Conditioning\r\n»  Automotive\r\n»  Banking &amp; Finance\r\n»  Biotechnology\r\n»  Business Support\r\n»  Computer / Software\r\n»  Computer / Hardware\r\n»  Construction / Civil Engineering\r\n»  Consulting Services\r\n»  Contract / Purchasing[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]&raquo;  Distribution &amp; Logistics\r\n&raquo;  Education Training\r\n&raquo;  Energy &amp; Power\r\n&raquo;  Engineering\r\n&raquo;  Entertainment\r\n&raquo;  FMCG\r\n&raquo;  Graphic Designing\r\n&raquo;  Government Sector\r\n&raquo;  Health Care\r\n&raquo;  Hospitality\r\n&raquo;  Human Resources\r\n&raquo;  Insurance\r\n&raquo;  Information Technology (IT)\r\n&raquo;  Security\r\n&raquo;  Telecom\r\n&raquo;  Travel &amp; Tourism[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/manpower-img.jpg\" alt=\"manpower-img\" width=\"799\" height=\"743\" class=\"alignnone size-full wp-image-1041\" />[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Manpower Provider", "", "inherit", "open", "open", "", "1002-revision-v1", "", "", "2016-03-17 11:44:30", "2016-03-17 11:44:30", "", "1002", "http://hrd.softons.cu.cc/1002-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1048", "1", "2016-03-17 12:00:10", "2016-03-17 12:00:10", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1 style=\"color:#8224e3;\">Manpower Provider</h1>\r\n\r\n<p style=\"text-align:justify;\">We are one of the leading service providers, engaged in providing different kinds of services such as manpower consultancy, overseas manpower consultant, civil construction services, building contractor and civil maintenance services. Our organization has gained huge appreciation from the clients due to its highly efficient and professionally managed services that are supported by timely execution and high quality standards.</p>\r\n\r\n\r\n<p style=\"text-align:justify;\"> We provide Fresher/Experienced trained manpower to our clients as per the specific requirement of the client. We provide equipment ready manpower as per the specifications received from Client on short notice. These manpower helps the clients to reduce operations cost and thus directly helps in short or long term skilled resources requirements.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"color:#8224e3;\">We provide following type of manpower with equipment support to our clients:</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Accounting / Auditing\r\n»  Administration\r\n»  Advertising\r\n»  Agriculture\r\n»  Aviation/Airline\r\n»  Architecture\r\n»  Air Conditioning\r\n»  Automotive\r\n»  Banking &amp; Finance\r\n»  Biotechnology[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Distribution &amp; Logistics\r\n»  Education Training\r\n»  Energy &amp; Power\r\n»  Engineering\r\n»  Entertainment\r\n»  FMCG\r\n»  Graphic Designing\r\n»  Government Sector\r\n»  Information Technology (IT)\r\n»  Security[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Business Support\r\n»  Computer / Software\r\n»  Computer / Hardware\r\n»  Construction / Civil Engineering\r\n»  Consulting Services\r\n»  Contract / Purchasing\r\n»  Health Care\r\n»  Hospitality\r\n»  Human Resources\r\n»  Insurance[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides10.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Manpower Provider", "", "inherit", "open", "open", "", "1002-revision-v1", "", "", "2016-03-17 12:00:10", "2016-03-17 12:00:10", "", "1002", "http://hrd.softons.cu.cc/1002-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1043", "1", "2016-03-17 11:49:36", "2016-03-17 11:49:36", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1 style=\"color:#8224e3;\">Manpower Provider</h1>\r\n\r\n<p style=\"text-align:justify;\">We are one of the leading service providers, engaged in providing different kinds of services such as manpower consultancy, overseas manpower consultant, civil construction services, building contractor and civil maintenance services. Our organization has gained huge appreciation from the clients due to its highly efficient and professionally managed services that are supported by timely execution and high quality standards.</p>\r\n\r\n\r\n<p style=\"text-align:justify;\"> We provide Fresher/Experienced trained manpower to our clients as per the specific requirement of the client. We provide equipment ready manpower as per the specifications received from Client on short notice. These manpower helps the clients to reduce operations cost and thus directly helps in short or long term skilled resources requirements.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"color:#8224e3;\">We provide following type of manpower with equipment support to our clients:</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Accounting / Auditing\r\n»  Administration\r\n»  Advertising\r\n»  Agriculture\r\n»  Aviation/Airline\r\n»  Architecture\r\n»  Air Conditioning\r\n»  Automotive\r\n»  Banking &amp; Finance\r\n»  Biotechnology\r\n»  Business Support\r\n»  Computer / Software\r\n»  Computer / Hardware\r\n»  Construction / Civil Engineering\r\n»  Consulting Services\r\n»  Contract / Purchasing[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]&raquo;  Distribution &amp; Logistics\r\n&raquo;  Education Training\r\n&raquo;  Energy &amp; Power\r\n&raquo;  Engineering\r\n&raquo;  Entertainment\r\n&raquo;  FMCG\r\n&raquo;  Graphic Designing\r\n&raquo;  Government Sector\r\n&raquo;  Health Care\r\n&raquo;  Hospitality\r\n&raquo;  Human Resources\r\n&raquo;  Insurance\r\n&raquo;  Information Technology (IT)\r\n&raquo;  Security\r\n&raquo;  Telecom\r\n&raquo;  Travel &amp; Tourism[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/manpower-img.jpg\" alt=\"manpower-img\" width=\"799\" height=\"743\" class=\"alignnone size-full wp-image-1041\" />[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Accounting / Auditing\r\n»  Administration\r\n»  Advertising\r\n»  Agriculture\r\n»  Aviation/Airline\r\n»  Architecture\r\n»  Air Conditioning\r\n»  Automotive\r\n»  Banking &amp; Finance\r\n»  Biotechnology\r\n»  Business Support\r\n»  Computer / Software\r\n»  Computer / Hardware\r\n»  Construction / Civil Engineering\r\n»  Consulting Services\r\n»  Contract / Purchasing[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/manpower-img.jpg\" alt=\"manpower-img\" width=\"799\" height=\"743\" class=\"alignnone size-full wp-image-1041\" />[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Manpower Provider", "", "inherit", "open", "open", "", "1002-revision-v1", "", "", "2016-03-17 11:49:36", "2016-03-17 11:49:36", "", "1002", "http://hrd.softons.cu.cc/1002-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1038", "1", "2016-03-17 11:36:48", "2016-03-17 11:36:48", "", "recruit1", "", "inherit", "open", "open", "", "recruit1", "", "", "2016-03-17 11:36:48", "2016-03-17 11:36:48", "", "1007", "http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1075", "1", "2016-03-18 10:29:00", "2016-03-18 10:29:00", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides-.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Recruitment</span></p>\r\n<p style=\"text-align:justify;\">HRD INTEGRATED MANPOWER SOLUTION is basically an organization completely deals with manpower consulting. In that we are associating with a huge number of firms. We are doing recruitment services for other organizations. This is commonly doing after the complete analysis of employer. </p>\r\n<p style=\"text-align:justify;\">We are following international recruitment standards. We are selecting very suitable candidates from every recruitment. Our IT recruitment procedures are famous in all the software industry. </p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">We, at HRD INTEGRATED MANPOWER SOLUTION, are specialized in providing proficient Manpower Recruitment solutions to the companies, looking for suitable manpower for their job requirements. We cater to the diverse manpower needs of all the industries such as Engineering, Iron &amp; Steel, Power, Real Estate, FMCG, Retail, IT/ ITES, Healthcare, Logistics, Hospitality, and many others. </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit.jpg\" alt=\"recruit\" width=\"673\" height=\"199\" class=\"alignnone size-full wp-image-1027\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">We have developed a rich database of the candidates who can fit in the different job roles offered by the companies. Moreover, we are capable of providing suitable fresher or experienced candidates as per the requirement of the client.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:25px; line-height:12px;\">Recruitment On Demand</span></p>\r\nThe Recruiting On-Demand model is perfect for those who need recruiting on a periodic basis. If your recruiting cycles require peak-period support, you will have all the benefits of a fully staffed recruiting department without the related cost of maintaining and housing that overhead during down or non-hire periods. Moreover, for proficient & cost-effective Recruitment On Demand solutions, you can contact to HRD INTEGRATED MANPOWER SOLUTION.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit1.jpg\" alt=\"recruit1\" width=\"1920\" height=\"810\" class=\"alignnone size-full wp-image-1038\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Recruitment", "", "inherit", "open", "open", "", "1007-revision-v1", "", "", "2016-03-18 10:29:00", "2016-03-18 10:29:00", "", "1007", "http://hrd.softons.cu.cc/1007-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1039", "1", "2016-03-17 11:37:22", "2016-03-17 11:37:22", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides-.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Recruitment</span></p>\r\n<p style=\"text-align:justify;\">HRD INTEGRATED MANPOWER SOLUTION is basically an organization completely deals with manpower consulting. In that we are associating with a huge number of firms. We are doing recruitment services for other organizations. This is commonly doing after the complete analysis of employer. </p>\r\n<p style=\"text-align:justify;\">We are following international recruitment standards. We are selecting very suitable candidates from every recruitment. Our IT recruitment procedures are famous in all the software industry. </p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">We, at HRD INTEGRATED MANPOWER SOLUTION, are specialized in providing proficient Manpower Recruitment solutions to the companies, looking for suitable manpower for their job requirements. We cater to the diverse manpower needs of all the industries such as Engineering, Iron &amp; Steel, Power, Real Estate, FMCG, Retail, IT/ ITES, Healthcare, Logistics, Hospitality, and many others. </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit.jpg\" alt=\"recruit\" width=\"673\" height=\"199\" class=\"alignnone size-full wp-image-1027\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">We have developed a rich database of the candidates who can fit in the different job roles offered by the companies. Moreover, we are capable of providing suitable fresher or experienced candidates as per the requirement of the client.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:25px; line-height:12px;\">Recruitment On Demand</span></p>\r\nThe Recruiting On-Demand model is perfect for those who need recruiting on a periodic basis. If your recruiting cycles require peak-period support, you will have all the benefits of a fully staffed recruiting department without the related cost of maintaining and housing that overhead during down or non-hire periods. Moreover, for proficient & cost-effective Recruitment On Demand solutions, you can contact to HRD INTEGRATED MANPOWER SOLUTION.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#0cb1ec\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit1.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit1.jpg\" alt=\"recruit1\" width=\"1920\" height=\"810\" class=\"alignnone size-full wp-image-1038\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Recruitment", "", "inherit", "open", "open", "", "1007-revision-v1", "", "", "2016-03-17 11:37:22", "2016-03-17 11:37:22", "", "1007", "http://hrd.softons.cu.cc/1007-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1040", "1", "2016-03-17 11:39:06", "2016-03-17 11:39:06", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides-.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Recruitment</span></p>\r\n<p style=\"text-align:justify;\">HRD INTEGRATED MANPOWER SOLUTION is basically an organization completely deals with manpower consulting. In that we are associating with a huge number of firms. We are doing recruitment services for other organizations. This is commonly doing after the complete analysis of employer. </p>\r\n<p style=\"text-align:justify;\">We are following international recruitment standards. We are selecting very suitable candidates from every recruitment. Our IT recruitment procedures are famous in all the software industry. </p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">We, at HRD INTEGRATED MANPOWER SOLUTION, are specialized in providing proficient Manpower Recruitment solutions to the companies, looking for suitable manpower for their job requirements. We cater to the diverse manpower needs of all the industries such as Engineering, Iron &amp; Steel, Power, Real Estate, FMCG, Retail, IT/ ITES, Healthcare, Logistics, Hospitality, and many others. </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit.jpg\" alt=\"recruit\" width=\"673\" height=\"199\" class=\"alignnone size-full wp-image-1027\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">We have developed a rich database of the candidates who can fit in the different job roles offered by the companies. Moreover, we are capable of providing suitable fresher or experienced candidates as per the requirement of the client.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:25px; line-height:12px;\">Recruitment On Demand</span></p>\r\nThe Recruiting On-Demand model is perfect for those who need recruiting on a periodic basis. If your recruiting cycles require peak-period support, you will have all the benefits of a fully staffed recruiting department without the related cost of maintaining and housing that overhead during down or non-hire periods. Moreover, for proficient & cost-effective Recruitment On Demand solutions, you can contact to HRD INTEGRATED MANPOWER SOLUTION.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit1.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit1.jpg\" alt=\"recruit1\" width=\"1920\" height=\"810\" class=\"alignnone size-full wp-image-1038\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Recruitment", "", "inherit", "open", "open", "", "1007-revision-v1", "", "", "2016-03-17 11:39:06", "2016-03-17 11:39:06", "", "1007", "http://hrd.softons.cu.cc/1007-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1033", "1", "2016-03-17 11:11:41", "2016-03-17 11:11:41", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1 style=\"color:#8224e3;\">Manpower Provider</h1>\r\n\r\n<p style=\"text-align:justify;\">We are one of the leading service providers, engaged in providing different kinds of services such as manpower consultancy, overseas manpower consultant, civil construction services, building contractor and civil maintenance services. Our organization has gained huge appreciation from the clients due to its highly efficient and professionally managed services that are supported by timely execution and high quality standards.</p>\r\n\r\n\r\n<p style=\"text-align:justify;\"> We provide Fresher/Experienced trained manpower to our clients as per the specific requirement of the client. We provide equipment ready manpower as per the specifications received from Client on short notice. These manpower helps the clients to reduce operations cost and thus directly helps in short or long term skilled resources requirements.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"color:#8224e3;\">We provide following type of manpower with equipment support to our clients:</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]&raqup; Accounting / Auditing\r\n&raqup; Administration\r\n&raqup; Advertising\r\n&raqup; Agriculture\r\n&raqup; Aviation/Airline\r\n&raqup; Architecture\r\n&raqup; Air Conditioning\r\n&raqup; Automotive\r\n&raqup; Banking & Finance\r\n&raqup; Biotechnology\r\n&raqup; Business Support\r\n&raqup; Computer / Software\r\n&raqup; Computer / Hardware\r\n&raqup; Construction / Civil Engineering\r\n&raqup; Consulting Services\r\n&raqup; Contract / Purchasing[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]&raqup; Distribution & Logistics\r\n&raqup; Education Training\r\n&raqup; Energy & Power\r\n&raqup; Engineering\r\n&raqup; Entertainment\r\n&raqup; FMCG\r\n&raqup; Graphic Designing\r\n&raqup; Government Sector\r\n&raqup; Health Care\r\n&raqup; Hospitality\r\n&raqup; Human Resources\r\n&raqup; Insurance\r\n&raqup; Information Technology (IT)\r\n&raqup; Security\r\n&raqup; Telecom\r\n&raqup; Travel & Tourism[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Manpower Provider", "", "inherit", "open", "open", "", "1002-revision-v1", "", "", "2016-03-17 11:11:41", "2016-03-17 11:11:41", "", "1002", "http://hrd.softons.cu.cc/1002-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1035", "1", "2016-03-17 11:15:40", "2016-03-17 11:15:40", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1 style=\"color:#8224e3;\">Manpower Provider</h1>\r\n\r\n<p style=\"text-align:justify;\">We are one of the leading service providers, engaged in providing different kinds of services such as manpower consultancy, overseas manpower consultant, civil construction services, building contractor and civil maintenance services. Our organization has gained huge appreciation from the clients due to its highly efficient and professionally managed services that are supported by timely execution and high quality standards.</p>\r\n\r\n\r\n<p style=\"text-align:justify;\"> We provide Fresher/Experienced trained manpower to our clients as per the specific requirement of the client. We provide equipment ready manpower as per the specifications received from Client on short notice. These manpower helps the clients to reduce operations cost and thus directly helps in short or long term skilled resources requirements.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"color:#8224e3;\">We provide following type of manpower with equipment support to our clients:</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Accounting / Auditing\r\n»  Administration\r\n»  Advertising\r\n»  Agriculture\r\n»  Aviation/Airline\r\n»  Architecture\r\n»  Air Conditioning\r\n»  Automotive\r\n»  Banking &amp; Finance\r\n»  Biotechnology\r\n»  Business Support\r\n»  Computer / Software\r\n»  Computer / Hardware\r\n»  Construction / Civil Engineering\r\n»  Consulting Services\r\n»  Contract / Purchasing[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]&raquo;  Distribution &amp; Logistics\r\n&raquo;  Education Training\r\n&raquo;  Energy &amp; Power\r\n&raquo;  Engineering\r\n&raquo;  Entertainment\r\n&raquo;  FMCG\r\n&raquo;  Graphic Designing\r\n&raquo;  Government Sector\r\n&raquo;  Health Care\r\n&raquo;  Hospitality\r\n&raquo;  Human Resources\r\n&raquo;  Insurance\r\n&raquo;  Information Technology (IT)\r\n&raquo;  Security\r\n&raquo;  Telecom\r\n&raquo;  Travel &amp; Tourism[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Manpower Provider", "", "inherit", "open", "open", "", "1002-revision-v1", "", "", "2016-03-17 11:15:40", "2016-03-17 11:15:40", "", "1002", "http://hrd.softons.cu.cc/1002-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1034", "1", "2016-03-17 11:14:43", "2016-03-17 11:14:43", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1 style=\"color:#8224e3;\">Manpower Provider</h1>\r\n\r\n<p style=\"text-align:justify;\">We are one of the leading service providers, engaged in providing different kinds of services such as manpower consultancy, overseas manpower consultant, civil construction services, building contractor and civil maintenance services. Our organization has gained huge appreciation from the clients due to its highly efficient and professionally managed services that are supported by timely execution and high quality standards.</p>\r\n\r\n\r\n<p style=\"text-align:justify;\"> We provide Fresher/Experienced trained manpower to our clients as per the specific requirement of the client. We provide equipment ready manpower as per the specifications received from Client on short notice. These manpower helps the clients to reduce operations cost and thus directly helps in short or long term skilled resources requirements.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2 style=\"color:#8224e3;\">We provide following type of manpower with equipment support to our clients:</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]&raquo;  Accounting / Auditing\r\n&raquo;  Administration\r\n&raquo;  Advertising\r\n&raquo;  Agriculture\r\n&raquo;  Aviation/Airline\r\n&raquo;  Architecture\r\n&raquo;  Air Conditioning\r\n&raquo;  Automotive\r\n&raquo;  Banking &amp; Finance\r\n&raquo;  Biotechnology\r\n&raquo;  Business Support\r\n&raquo;  Computer / Software\r\n&raquo;  Computer / Hardware\r\n&raquo;  Construction / Civil Engineering\r\n&raquo;  Consulting Services\r\n&raquo;  Contract / Purchasing[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]&raquo;  Distribution &amp; Logistics\r\n&raquo;  Education Training\r\n&raquo;  Energy &amp; Power\r\n&raquo;  Engineering\r\n&raquo;  Entertainment\r\n&raquo;  FMCG\r\n&raquo;  Graphic Designing\r\n&raquo;  Government Sector\r\n&raquo;  Health Care\r\n&raquo;  Hospitality\r\n&raquo;  Human Resources\r\n&raquo;  Insurance\r\n&raquo;  Information Technology (IT)\r\n&raquo;  Security\r\n&raquo;  Telecom\r\n&raquo;  Travel &amp; Tourism[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Manpower Provider", "", "inherit", "open", "open", "", "1002-revision-v1", "", "", "2016-03-17 11:14:43", "2016-03-17 11:14:43", "", "1002", "http://hrd.softons.cu.cc/1002-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1036", "1", "2016-03-17 11:17:17", "2016-03-17 11:17:17", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1 style=\"color:#8224e3;\">Manpower Provider</h1>\r\n\r\n<p style=\"text-align:justify;\">We are one of the leading service providers, engaged in providing different kinds of services such as manpower consultancy, overseas manpower consultant, civil construction services, building contractor and civil maintenance services. Our organization has gained huge appreciation from the clients due to its highly efficient and professionally managed services that are supported by timely execution and high quality standards.</p>\r\n\r\n\r\n<p style=\"text-align:justify;\"> We provide Fresher/Experienced trained manpower to our clients as per the specific requirement of the client. We provide equipment ready manpower as per the specifications received from Client on short notice. These manpower helps the clients to reduce operations cost and thus directly helps in short or long term skilled resources requirements.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"color:#8224e3;\">We provide following type of manpower with equipment support to our clients:</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]»  Accounting / Auditing\r\n»  Administration\r\n»  Advertising\r\n»  Agriculture\r\n»  Aviation/Airline\r\n»  Architecture\r\n»  Air Conditioning\r\n»  Automotive\r\n»  Banking &amp; Finance\r\n»  Biotechnology\r\n»  Business Support\r\n»  Computer / Software\r\n»  Computer / Hardware\r\n»  Construction / Civil Engineering\r\n»  Consulting Services\r\n»  Contract / Purchasing[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]&raquo;  Distribution &amp; Logistics\r\n&raquo;  Education Training\r\n&raquo;  Energy &amp; Power\r\n&raquo;  Engineering\r\n&raquo;  Entertainment\r\n&raquo;  FMCG\r\n&raquo;  Graphic Designing\r\n&raquo;  Government Sector\r\n&raquo;  Health Care\r\n&raquo;  Hospitality\r\n&raquo;  Human Resources\r\n&raquo;  Insurance\r\n&raquo;  Information Technology (IT)\r\n&raquo;  Security\r\n&raquo;  Telecom\r\n&raquo;  Travel &amp; Tourism[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Manpower Provider", "", "inherit", "open", "open", "", "1002-revision-v1", "", "", "2016-03-17 11:17:17", "2016-03-17 11:17:17", "", "1002", "http://hrd.softons.cu.cc/1002-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1037", "1", "2016-03-17 11:23:10", "2016-03-17 11:23:10", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides-.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Recruitment</span></p>\r\n<p style=\"text-align:justify;\">HRD INTEGRATED MANPOWER SOLUTION is basically an organization completely deals with manpower consulting. In that we are associating with a huge number of firms. We are doing recruitment services for other organizations. This is commonly doing after the complete analysis of employer. </p>\r\n<p style=\"text-align:justify;\">We are following international recruitment standards. We are selecting very suitable candidates from every recruitment. Our IT recruitment procedures are famous in all the software industry. </p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">We, at HRD INTEGRATED MANPOWER SOLUTION, are specialized in providing proficient Manpower Recruitment solutions to the companies, looking for suitable manpower for their job requirements. We cater to the diverse manpower needs of all the industries such as Engineering, Iron &amp; Steel, Power, Real Estate, FMCG, Retail, IT/ ITES, Healthcare, Logistics, Hospitality, and many others. </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit.jpg\" alt=\"recruit\" width=\"673\" height=\"199\" class=\"alignnone size-full wp-image-1027\">[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">We have developed a rich database of the candidates who can fit in the different job roles offered by the companies. Moreover, we are capable of providing suitable fresher or experienced candidates as per the requirement of the client.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:25px; line-height:12px;\">Recruitment On Demand</span></p>\r\nThe Recruiting On-Demand model is perfect for those who need recruiting on a periodic basis. If your recruiting cycles require peak-period support, you will have all the benefits of a fully staffed recruiting department without the related cost of maintaining and housing that overhead during down or non-hire periods. Moreover, for proficient & cost-effective Recruitment On Demand solutions, you can contact to HRD INTEGRATED MANPOWER SOLUTION.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Recruitment", "", "inherit", "open", "open", "", "1007-revision-v1", "", "", "2016-03-17 11:23:10", "2016-03-17 11:23:10", "", "1007", "http://hrd.softons.cu.cc/1007-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1030", "1", "2016-03-17 10:59:05", "2016-03-17 10:59:05", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides-.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Recruitment</span></p>\r\n<p style=\"text-align:justify;\">HRD INTEGRATED MANPOWER SOLUTION is basically an organization completely deals with manpower consulting. In that we are associating with a huge number of firms. We are doing recruitment services for other organizations. This is commonly doing after the complete analysis of employer. </p>\r\n<p style=\"text-align:justify;\">We are following international recruitment standards. We are selecting very suitable candidates from every recruitment. Our IT recruitment procedures are famous in all the software industry. </p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">We, at HRD INTEGRATED MANPOWER SOLUTION, are specialized in providing proficient Manpower Recruitment solutions to the companies, looking for suitable manpower for their job requirements. We cater to the diverse manpower needs of all the industries such as Engineering, Iron & Steel, Power, Real Estate, FMCG, Retail, IT/ ITES, Healthcare, Logistics, Hospitality, and many others. </p>\r\n\r\n<p style=\"text-align:justify;\">We have developed a rich database of the candidates who can fit in the different job roles offered by the companies. Moreover, we are capable of providing suitable fresher or experienced candidates as per the requirement of the client.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit.jpg\" alt=\"recruit\" width=\"673\" height=\"199\" class=\"alignnone size-full wp-image-1027\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:25px; line-height:12px;\">Recruitment On Demand</span></p>\r\nThe Recruiting On-Demand model is perfect for those who need recruiting on a periodic basis. If your recruiting cycles require peak-period support, you will have all the benefits of a fully staffed recruiting department without the related cost of maintaining and housing that overhead during down or non-hire periods. Moreover, for proficient & cost-effective Recruitment On Demand solutions, you can contact to HRD INTEGRATED MANPOWER SOLUTION.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Recruitment", "", "inherit", "open", "open", "", "1007-revision-v1", "", "", "2016-03-17 10:59:05", "2016-03-17 10:59:05", "", "1007", "http://hrd.softons.cu.cc/1007-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1031", "1", "2016-03-17 11:00:12", "2016-03-17 11:00:12", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides-.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Recruitment</span></p>\r\n<p style=\"text-align:justify;\">HRD INTEGRATED MANPOWER SOLUTION is basically an organization completely deals with manpower consulting. In that we are associating with a huge number of firms. We are doing recruitment services for other organizations. This is commonly doing after the complete analysis of employer. </p>\r\n<p style=\"text-align:justify;\">We are following international recruitment standards. We are selecting very suitable candidates from every recruitment. Our IT recruitment procedures are famous in all the software industry. </p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">We, at HRD INTEGRATED MANPOWER SOLUTION, are specialized in providing proficient Manpower Recruitment solutions to the companies, looking for suitable manpower for their job requirements. We cater to the diverse manpower needs of all the industries such as Engineering, Iron &amp; Steel, Power, Real Estate, FMCG, Retail, IT/ ITES, Healthcare, Logistics, Hospitality, and many others. </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit.jpg\" alt=\"recruit\" width=\"673\" height=\"199\" class=\"alignnone size-full wp-image-1027\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">We have developed a rich database of the candidates who can fit in the different job roles offered by the companies. Moreover, we are capable of providing suitable fresher or experienced candidates as per the requirement of the client.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:25px; line-height:12px;\">Recruitment On Demand</span></p>\r\nThe Recruiting On-Demand model is perfect for those who need recruiting on a periodic basis. If your recruiting cycles require peak-period support, you will have all the benefits of a fully staffed recruiting department without the related cost of maintaining and housing that overhead during down or non-hire periods. Moreover, for proficient & cost-effective Recruitment On Demand solutions, you can contact to HRD INTEGRATED MANPOWER SOLUTION.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Recruitment", "", "inherit", "open", "open", "", "1007-revision-v1", "", "", "2016-03-17 11:00:12", "2016-03-17 11:00:12", "", "1007", "http://hrd.softons.cu.cc/1007-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1032", "1", "2016-03-17 11:04:19", "2016-03-17 11:04:19", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1 style=\"color:#8224e3;\">Manpower Provider</h1>\r\n\r\n<p style=\"text-align:justify;\">We are one of the leading service providers, engaged in providing different kinds of services such as manpower consultancy, overseas manpower consultant, civil construction services, building contractor and civil maintenance services. Our organization has gained huge appreciation from the clients due to its highly efficient and professionally managed services that are supported by timely execution and high quality standards.</p>\r\n\r\n\r\n<p style=\"text-align:justify;\"> We provide Fresher/Experienced trained manpower to our clients as per the specific requirement of the client. We provide equipment ready manpower as per the specifications received from Client on short notice. These manpower helps the clients to reduce operations cost and thus directly helps in short or long term skilled resources requirements.</p>\r\n\r\n\r\n\r\n\r\n We provide following type of manpower with equipment support to our clients:[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][/et_pb_row][/et_pb_section]", "Manpower Provider", "", "inherit", "open", "open", "", "1002-revision-v1", "", "", "2016-03-17 11:04:19", "2016-03-17 11:04:19", "", "1002", "http://hrd.softons.cu.cc/1002-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1020", "1", "2016-03-17 10:21:42", "2016-03-17 10:21:42", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides-.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Recruitment</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Recruitment", "", "inherit", "open", "open", "", "1007-revision-v1", "", "", "2016-03-17 10:21:42", "2016-03-17 10:21:42", "", "1007", "http://hrd.softons.cu.cc/1007-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1021", "1", "2016-03-17 10:23:27", "2016-03-17 10:23:27", "", "Manpower Provider", "", "trash", "open", "open", "", "manpower-provider-2", "", "", "2016-03-17 10:24:15", "2016-03-17 10:24:15", "", "0", "http://hrd.softons.cu.cc/?page_id=1021", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1022", "1", "2016-03-17 10:23:27", "2016-03-17 10:23:27", "", "Manpower Provider", "", "inherit", "open", "open", "", "1021-revision-v1", "", "", "2016-03-17 10:23:27", "2016-03-17 10:23:27", "", "1021", "http://hrd.softons.cu.cc/1021-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1023", "1", "2016-03-17 10:24:59", "2016-03-17 10:24:59", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides-.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Recruitment</span></p>\r\n<p style=\"text-align:justify;\">HRD INTEGRATED MANPOWER SOLUTION is basically an organization completely deals with manpower consulting. In that we are associating with a huge number of firms. We are doing recruitment services for other organizations. This is commonly doing after the complete analysis of employer. </p>\r\n<p style=\"text-align:justify;\">We are following international recruitment standards. We are selecting very suitable candidates from every recruitment. Our IT recruitment procedures are famous in all the software industry. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Recruitment", "", "inherit", "open", "open", "", "1007-revision-v1", "", "", "2016-03-17 10:24:59", "2016-03-17 10:24:59", "", "1007", "http://hrd.softons.cu.cc/1007-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1024", "1", "2016-03-17 10:31:29", "2016-03-17 10:31:29", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides-.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Recruitment</span></p>\r\n<p style=\"text-align:justify;\">HRD INTEGRATED MANPOWER SOLUTION is basically an organization completely deals with manpower consulting. In that we are associating with a huge number of firms. We are doing recruitment services for other organizations. This is commonly doing after the complete analysis of employer. </p>\r\n<p style=\"text-align:justify;\">We are following international recruitment standards. We are selecting very suitable candidates from every recruitment. Our IT recruitment procedures are famous in all the software industry. </p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:25px; line-height:12px;\">Recruitment On Demand</span></p>\r\nThe Recruiting On-Demand model is perfect for those who need recruiting on a periodic basis. If your recruiting cycles require peak-period support, you will have all the benefits of a fully staffed recruiting department without the related cost of maintaining and housing that overhead during down or non-hire periods. Moreover, for proficient & cost-effective Recruitment On Demand solutions, you can contact to HRD INTEGRATED MANPOWER SOLUTION.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Recruitment", "", "inherit", "open", "open", "", "1007-revision-v1", "", "", "2016-03-17 10:31:29", "2016-03-17 10:31:29", "", "1007", "http://hrd.softons.cu.cc/1007-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1025", "1", "2016-03-17 10:40:32", "2016-03-17 10:40:32", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides-.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Recruitment</span></p>\r\n<p style=\"text-align:justify;\">HRD INTEGRATED MANPOWER SOLUTION is basically an organization completely deals with manpower consulting. In that we are associating with a huge number of firms. We are doing recruitment services for other organizations. This is commonly doing after the complete analysis of employer. </p>\r\n<p style=\"text-align:justify;\">We are following international recruitment standards. We are selecting very suitable candidates from every recruitment. Our IT recruitment procedures are famous in all the software industry. </p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">We, at HRD INTEGRATED MANPOWER SOLUTION, are specialized in providing proficient Manpower Recruitment solutions to the companies, looking for suitable manpower for their job requirements. We cater to the diverse manpower needs of all the industries such as Engineering, Iron & Steel, Power, Real Estate, FMCG, Retail, IT/ ITES, Healthcare, Logistics, Hospitality, and many others. </p>\r\n\r\n<p style=\"text-align:justify;\">We have developed a rich database of the candidates who can fit in the different job roles offered by the companies. Moreover, we are capable of providing suitable fresher or experienced candidates as per the requirement of the client.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:25px; line-height:12px;\">Recruitment On Demand</span></p>\r\nThe Recruiting On-Demand model is perfect for those who need recruiting on a periodic basis. If your recruiting cycles require peak-period support, you will have all the benefits of a fully staffed recruiting department without the related cost of maintaining and housing that overhead during down or non-hire periods. Moreover, for proficient & cost-effective Recruitment On Demand solutions, you can contact to HRD INTEGRATED MANPOWER SOLUTION.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Recruitment", "", "inherit", "open", "open", "", "1007-revision-v1", "", "", "2016-03-17 10:40:32", "2016-03-17 10:40:32", "", "1007", "http://hrd.softons.cu.cc/1007-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1026", "1", "2016-03-17 10:51:35", "2016-03-17 10:51:35", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/service1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1 style=\"color:#8224e3;\">Manpower Provider</h1>\r\n\r\n<p style=\"text-align:justify;\">We are one of the leading service providers, engaged in providing different kinds of services such as manpower consultancy, overseas manpower consultant, civil construction services, building contractor and civil maintenance services. Our organization has gained huge appreciation from the clients due to its highly efficient and professionally managed services that are supported by timely execution and high quality standards.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][/et_pb_row][/et_pb_section]", "Manpower Provider", "", "inherit", "open", "open", "", "1002-revision-v1", "", "", "2016-03-17 10:51:35", "2016-03-17 10:51:35", "", "1002", "http://hrd.softons.cu.cc/1002-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1027", "1", "2016-03-17 10:56:32", "2016-03-17 10:56:32", "", "recruit", "", "inherit", "open", "open", "", "recruit", "", "", "2016-03-17 10:56:32", "2016-03-17 10:56:32", "", "1007", "http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1028", "1", "2016-03-17 10:56:49", "2016-03-17 10:56:49", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides-.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Recruitment</span></p>\r\n<p style=\"text-align:justify;\">HRD INTEGRATED MANPOWER SOLUTION is basically an organization completely deals with manpower consulting. In that we are associating with a huge number of firms. We are doing recruitment services for other organizations. This is commonly doing after the complete analysis of employer. </p>\r\n<p style=\"text-align:justify;\">We are following international recruitment standards. We are selecting very suitable candidates from every recruitment. Our IT recruitment procedures are famous in all the software industry. </p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">We, at HRD INTEGRATED MANPOWER SOLUTION, are specialized in providing proficient Manpower Recruitment solutions to the companies, looking for suitable manpower for their job requirements. We cater to the diverse manpower needs of all the industries such as Engineering, Iron & Steel, Power, Real Estate, FMCG, Retail, IT/ ITES, Healthcare, Logistics, Hospitality, and many others. </p>\r\n\r\n<p style=\"text-align:justify;\">We have developed a rich database of the candidates who can fit in the different job roles offered by the companies. Moreover, we are capable of providing suitable fresher or experienced candidates as per the requirement of the client.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit-300x88.jpg\" alt=\"recruit\" width=\"300\" height=\"88\" class=\"alignnone size-medium wp-image-1027\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:25px; line-height:12px;\">Recruitment On Demand</span></p>\r\nThe Recruiting On-Demand model is perfect for those who need recruiting on a periodic basis. If your recruiting cycles require peak-period support, you will have all the benefits of a fully staffed recruiting department without the related cost of maintaining and housing that overhead during down or non-hire periods. Moreover, for proficient & cost-effective Recruitment On Demand solutions, you can contact to HRD INTEGRATED MANPOWER SOLUTION.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Recruitment", "", "inherit", "open", "open", "", "1007-revision-v1", "", "", "2016-03-17 10:56:49", "2016-03-17 10:56:49", "", "1007", "http://hrd.softons.cu.cc/1007-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1029", "1", "2016-03-17 10:58:15", "2016-03-17 10:58:15", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/Slides-.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Recruitment</span></p>\r\n<p style=\"text-align:justify;\">HRD INTEGRATED MANPOWER SOLUTION is basically an organization completely deals with manpower consulting. In that we are associating with a huge number of firms. We are doing recruitment services for other organizations. This is commonly doing after the complete analysis of employer. </p>\r\n<p style=\"text-align:justify;\">We are following international recruitment standards. We are selecting very suitable candidates from every recruitment. Our IT recruitment procedures are famous in all the software industry. </p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:justify;\">We, at HRD INTEGRATED MANPOWER SOLUTION, are specialized in providing proficient Manpower Recruitment solutions to the companies, looking for suitable manpower for their job requirements. We cater to the diverse manpower needs of all the industries such as Engineering, Iron & Steel, Power, Real Estate, FMCG, Retail, IT/ ITES, Healthcare, Logistics, Hospitality, and many others. </p>\r\n\r\n<p style=\"text-align:justify;\">We have developed a rich database of the candidates who can fit in the different job roles offered by the companies. Moreover, we are capable of providing suitable fresher or experienced candidates as per the requirement of the client.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:25px; line-height:12px;\">Recruitment On Demand</span></p>\r\nThe Recruiting On-Demand model is perfect for those who need recruiting on a periodic basis. If your recruiting cycles require peak-period support, you will have all the benefits of a fully staffed recruiting department without the related cost of maintaining and housing that overhead during down or non-hire periods. Moreover, for proficient & cost-effective Recruitment On Demand solutions, you can contact to HRD INTEGRATED MANPOWER SOLUTION.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<a href=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit.jpg\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2016/03/recruit-300x88.jpg\" alt=\"recruit\" width=\"300\" height=\"88\" class=\"alignnone size-medium wp-image-1027\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Recruitment", "", "inherit", "open", "open", "", "1007-revision-v1", "", "", "2016-03-17 10:58:15", "2016-03-17 10:58:15", "", "1007", "http://hrd.softons.cu.cc/1007-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("655", "1", "2015-01-02 10:32:34", "2015-01-02 10:32:34", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/contactus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">ENQUIRY NOW </span></p> \r\n\r\nWhenever you think to buy luxury villas, permanent as well as temporary, we are always at your service to the fullest extent.\r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">OFFICE @ </span></p> \r\n\r\nPlot No 20, \r\nThe Exotic Near TTK Prestige,\r\nSipcot Phase 1,\r\nHosur - 635126.\r\n\r\n\r\n<strong>Mobile</strong> : +91 96591 09333\r\n\r\n\r\n<strong>Email</strong> : info@nandaavanaproperties.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2015-01-02 10:32:34", "2015-01-02 10:32:34", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("657", "1", "2015-01-02 10:37:45", "2015-01-02 10:37:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\"><strong>NANDAAVANA PROPERTIES</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Nandaavana Properties, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Our Vision</span>\r\n<p style=\"text-align: justify;\">Upgrading lifestyle for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">&nbsp;Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Pricing\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"100\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row]</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\">NANDAAVANA PROPERTIES has been one of the leading developers in HOSUR &amp; BANGALORE</span></p>\r\n<p style=\"text-align:center;\">Nandaavana Properties can provide a complete range of amenities to ensure that you enjoy your stay with us. </p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-01-02 10:37:45", "2015-01-02 10:37:45", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1080", "1", "2016-03-21 11:38:48", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2016-03-21 11:38:48", "0000-00-00 00:00:00", "", "0", "http://hrd.softons.cu.cc/?p=1080", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("872", "1", "2016-03-11 04:53:03", "2016-03-11 04:53:03", "", "bg04", "", "inherit", "open", "open", "", "bg04", "", "", "2016-03-11 04:53:03", "2016-03-11 04:53:03", "", "0", "http://hrd.softons.cu.cc/wp-content/uploads/2016/03/bg04.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("873", "1", "2016-03-11 05:30:35", "2016-03-11 05:30:35", "", "Slides1", "", "inherit", "open", "open", "", "slides1", "", "", "2016-03-11 05:30:35", "2016-03-11 05:30:35", "", "22", "http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("877", "1", "2016-03-11 05:40:23", "2016-03-11 05:40:23", "", "Slides1", "", "inherit", "open", "open", "", "slides1-3", "", "", "2016-03-11 05:40:23", "2016-03-11 05:40:23", "", "22", "http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides13.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("878", "1", "2016-03-11 05:40:39", "2016-03-11 05:40:39", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides13.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is a recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» Every person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">To understand your deepest desires You, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify; \">Quality is non-negotiable, and we deliver it, no matter what the odds are. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">Showcased in a track record of excellence, Integrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 05:40:39", "2016-03-11 05:40:39", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("879", "1", "2016-03-11 06:00:38", "2016-03-11 06:00:38", "", "Slides2", "", "inherit", "open", "open", "", "slides2", "", "", "2016-03-11 06:00:38", "2016-03-11 06:00:38", "", "22", "http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("880", "1", "2016-03-11 06:00:57", "2016-03-11 06:00:57", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is a recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» Every person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">To understand your deepest desires You, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify; \">Quality is non-negotiable, and we deliver it, no matter what the odds are. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">Showcased in a track record of excellence, Integrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 06:00:57", "2016-03-11 06:00:57", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("881", "1", "2016-03-11 06:08:50", "2016-03-11 06:08:50", "", "About Us", "", "publish", "open", "open", "", "about-us", "", "", "2016-03-18 10:43:15", "2016-03-18 10:43:15", "", "0", "http://hrd.softons.cu.cc/?p=881", "2", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("882", "1", "2016-03-11 06:08:50", "2016-03-11 06:08:50", "", "Service", "", "publish", "open", "open", "", "service", "", "", "2016-03-18 10:43:15", "2016-03-18 10:43:15", "", "0", "http://hrd.softons.cu.cc/?p=882", "4", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("884", "1", "2016-03-11 06:16:51", "2016-03-11 06:16:51", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform:uppercase;\">Welcome to Hrd manpower Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is a recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» Every person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">To understand your deepest desires You, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify; \">Quality is non-negotiable, and we deliver it, no matter what the odds are. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">Showcased in a track record of excellence, Integrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 06:16:51", "2016-03-11 06:16:51", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("885", "1", "2016-03-11 06:21:22", "2016-03-11 06:21:22", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform:uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is a recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» Every person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">To understand your deepest desires You, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify; \">Quality is non-negotiable, and we deliver it, no matter what the odds are. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">Showcased in a track record of excellence, Integrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 06:21:22", "2016-03-11 06:21:22", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("886", "1", "2016-03-11 06:47:01", "2016-03-11 06:47:01", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#8224e3\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"text-transform:uppercase;\">Welcome to HRD Integrated Manpower Solution Hosur</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is a recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» Every person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">To understand your deepest desires You, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify; \">Quality is non-negotiable, and we deliver it, no matter what the odds are. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">Showcased in a track record of excellence, Integrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 06:47:01", "2016-03-11 06:47:01", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("887", "1", "2016-03-11 10:08:13", "2016-03-11 10:08:13", "", "what-we-do2", "", "inherit", "open", "open", "", "what-we-do2", "", "", "2016-03-11 10:08:13", "2016-03-11 10:08:13", "", "22", "http://hrd.softons.cu.cc/wp-content/uploads/2014/11/what-we-do2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("888", "1", "2016-03-11 10:08:44", "2016-03-11 10:08:44", "", "service", "", "inherit", "open", "open", "", "service-2", "", "", "2016-03-11 10:08:44", "2016-03-11 10:08:44", "", "22", "http://hrd.softons.cu.cc/wp-content/uploads/2014/11/service.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("883", "1", "2016-03-11 06:10:53", "2016-03-11 06:10:53", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides2.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#1e73be\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2 style=\"text-transform:uppercase;\">Welcome to Hrd manpower Hosur</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is a recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» Every person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">To understand your deepest desires You, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify; \">Quality is non-negotiable, and we deliver it, no matter what the odds are. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">Showcased in a track record of excellence, Integrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2016-03-11 06:10:53", "2016-03-11 06:10:53", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("776", "1", "2015-03-25 05:40:45", "2015-03-25 05:40:45", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_gallery admin_label=\"Gallery\" fullwidth=\"on\" posts_number=\"6\" show_title_and_caption=\"on\" show_pagination=\"on\" background_layout=\"light\" gallery_ids=\"772,773,774,775\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Completed Projects", "", "inherit", "open", "open", "", "541-revision-v1", "", "", "2015-03-25 05:40:45", "2015-03-25 05:40:45", "", "541", "http://hrd.softons.cu.cc/541-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("693", "1", "2015-03-20 09:08:39", "2015-03-20 09:08:39", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\"> <img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\"> <img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission.png\" width=\"50px\">Mission</span></p>\r\n\r\n<p style=\"text-align:justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every \r\n   \r\n                Â» person and uplifting society benchmarks.\r\n	  	Â» To deliver value for money.\r\n	  	Â» To cater to the need of growing population.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred & trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 09:08:39", "2015-03-20 09:08:39", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("694", "1", "2015-03-20 09:10:01", "2015-03-20 09:10:01", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\"> <img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission.png\" alt=\"\" width=\"50px\" />\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"]\r\n\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\"> Mission</span></p>\r\n\r\n[/wc_column][/wc_row]\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred & trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 09:10:01", "2015-03-20 09:10:01", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("696", "1", "2015-03-20 09:13:32", "2015-03-20 09:13:32", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\"> WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\"> Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 09:13:32", "2015-03-20 09:13:32", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("695", "1", "2015-03-20 09:12:01", "2015-03-20 09:12:01", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\"> <img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"][wc_row][wc_column size=\"one-fourth\" position=\"first\"]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission.png\" alt=\"\" width=\"50px\" />\r\n\r\n[/wc_column][wc_column size=\"one-fourth\"]\r\n\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\"> Mission</span></p>\r\n\r\n[/wc_column][wc_column size=\"one-fourth\"]\r\n\r\n\r\n\r\n[/wc_column][wc_column size=\"one-fourth\" position=\"last\"]\r\n\r\n\r\n\r\n[/wc_column][/wc_row]\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission.png\" alt=\"\" width=\"50px\" />\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"]\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\"> Mission</span></p>\r\n[/wc_column][/wc_row]\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred & trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 09:12:01", "2015-03-20 09:12:01", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("698", "1", "2015-03-20 09:26:55", "2015-03-20 09:26:55", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 09:26:55", "2015-03-20 09:26:55", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("699", "1", "2015-03-20 09:27:46", "2015-03-20 09:27:46", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY\" frameborder=\"0\" allowfullscreen></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 09:27:46", "2015-03-20 09:27:46", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("700", "1", "2015-03-20 09:28:48", "2015-03-20 09:28:48", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 09:28:48", "2015-03-20 09:28:48", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("701", "1", "2015-03-20 09:33:34", "2015-03-20 09:33:34", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#81d742\" alignment=\"center\" background_layout=\"dark\"]We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 09:33:34", "2015-03-20 09:33:34", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("713", "1", "2015-03-20 09:56:46", "2015-03-20 09:56:46", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#dd3333\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 09:56:46", "2015-03-20 09:56:46", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("707", "1", "2015-03-20 09:42:10", "2015-03-20 09:42:10", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#dd3333\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 09:42:10", "2015-03-20 09:42:10", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("706", "1", "2015-03-20 09:40:39", "2015-03-20 09:40:39", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#dd3333\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 09:40:39", "2015-03-20 09:40:39", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("703", "1", "2015-03-20 09:36:40", "2015-03-20 09:36:40", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#dd3333\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<P style=\"font-size:25px; text-transform:uppercase;\">We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 09:36:40", "2015-03-20 09:36:40", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("702", "1", "2015-03-20 09:34:58", "2015-03-20 09:34:58", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#81d742\" alignment=\"center\" background_layout=\"dark\"]We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#dd3333\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 09:34:58", "2015-03-20 09:34:58", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("704", "1", "2015-03-20 09:38:11", "2015-03-20 09:38:11", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#dd3333\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase;\">strong>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 09:38:11", "2015-03-20 09:38:11", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("705", "1", "2015-03-20 09:39:01", "2015-03-20 09:39:01", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#dd3333\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase;\"><strong>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"on\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Ready-to-buy-a-home.jpg\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#FFFFFF;line-height:25px; font-size:35px;\"><strong>COME HOME TO THE BREEZE</strong></span>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#02407a; font-size:18px; line-height:30px;\"><strong>The EXOTIC </strong>is located just 1.5 kms from NH7 offers simplex villas, 2 BHK and 3 BHK in a new and innovative concept. Only the best goes into the making of your new home, which is why we take pride in our promise of top-of-the-line fits and finish.</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>YOUR LIVING DESERVES BETTER</b></span></h2>\r\n<h3><span style=\"line-height: 35px;\"><p align=\"center\">The Exotic is located just 10mins drive from Electronic City offers Simplx/Duplex villas, 2BHK &amp; 3BHK villas in a New and Innovative Concept. </p></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 09:39:01", "2015-03-20 09:39:01", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("714", "1", "2015-03-20 10:02:07", "2015-03-20 10:02:07", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#dd3333\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"PASSION\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#7EBEC5\" use_circle=\"off\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]<span style=\"color:#fffff; font-size:20px; \">to understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span></span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 10:02:07", "2015-03-20 10:02:07", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("710", "1", "2015-03-20 09:50:41", "2015-03-20 09:50:41", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#dd3333\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#12ae36;\"><b>We at Nandaavana Properties strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 09:50:41", "2015-03-20 09:50:41", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("711", "1", "2015-03-20 09:51:45", "2015-03-20 09:51:45", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#dd3333\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We at Nandaavana Properties strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 09:51:45", "2015-03-20 09:51:45", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("712", "1", "2015-03-20 09:52:29", "2015-03-20 09:52:29", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#dd3333\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Theexotic.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Aminities1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" use_background_color=\"on\" background_color=\"#008fcb\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"http://hrd.softons.cu.cc/contact-us/\" button_text=\"BOOK NOW\"]<span style=\"color:#fffff; font-size:35px; line-height:45px;\">Whether you are looking to own your dream home or property investment in<span style=\"color:#fffff; font-size:45px; \"><b> BANGALORE SOUTH, </b></span>we provide the best options for you...</span>\r\n\r\n<span style=\"color:#fffff; font-size:20px; \">Life isn\'t about the destination, but the star-studded journey that gets you there</span>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 09:52:29", "2015-03-20 09:52:29", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("715", "1", "2015-03-20 10:03:49", "2015-03-20 10:03:49", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#dd3333\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"PASSION\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#7EBEC5\" use_circle=\"on\" circle_color=\"#7EBEC5\" use_circle_border=\"off\" circle_border_color=\"#7EBEC5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<span style=\"color:#ffffff; font-size:20px; \">to understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 10:03:49", "2015-03-20 10:03:49", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("716", "1", "2015-03-20 10:13:24", "2015-03-20 10:13:24", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#dd3333\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"PASSION\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#ffffff\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<span style=\"color:#ffffff; font-size:20px; \">to understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 10:13:24", "2015-03-20 10:13:24", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("717", "1", "2015-03-20 10:16:11", "2015-03-20 10:16:11", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#dd3333\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">to understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 10:16:11", "2015-03-20 10:16:11", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("718", "1", "2015-03-20 10:19:32", "2015-03-20 10:19:32", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#dd3333\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 10:19:32", "2015-03-20 10:19:32", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("719", "1", "2015-03-20 10:21:20", "2015-03-20 10:21:20", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#dd9933\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 20px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:20px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 10:21:20", "2015-03-20 10:21:20", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("720", "1", "2015-03-20 10:26:20", "2015-03-20 10:26:20", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#dd9933\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 10:26:20", "2015-03-20 10:26:20", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("745", "1", "2015-03-20 11:14:17", "2015-03-20 11:14:17", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 11:14:17", "2015-03-20 11:14:17", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("721", "1", "2015-03-20 10:29:06", "2015-03-20 10:29:06", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#dd9933\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 10:29:06", "2015-03-20 10:29:06", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("737", "1", "2015-03-20 11:03:11", "2015-03-20 11:03:11", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 11:03:11", "2015-03-20 11:03:11", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("722", "1", "2015-03-20 10:29:48", "2015-03-20 10:29:48", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#dd9933\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 10:29:48", "2015-03-20 10:29:48", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("723", "1", "2015-03-20 10:31:33", "2015-03-20 10:31:33", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#dd9933\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#92d662\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 10:31:33", "2015-03-20 10:31:33", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("724", "1", "2015-03-20 10:32:41", "2015-03-20 10:32:41", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#dd9933\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#008fcb\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 10:32:41", "2015-03-20 10:32:41", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("725", "1", "2015-03-20 10:35:37", "2015-03-20 10:35:37", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#dd9933\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 10:35:37", "2015-03-20 10:35:37", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("726", "1", "2015-03-20 10:36:40", "2015-03-20 10:36:40", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 10:36:40", "2015-03-20 10:36:40", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("731", "1", "2015-03-20 10:53:18", "2015-03-20 10:53:18", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-729\" />[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-730\" />[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#fff; font-size:30px;\">Core Values:</span></p>\r\n\r\n	  	Â» Delivering promises. Our word is our pledge.\r\n	  	Â» Sustained efforts to enhance quality, customized service and value for money.\r\n	  	Â» Ethical and professional service.\r\n	  	Â» Compliance and respect for all community, environmental and legal requirements.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 10:53:18", "2015-03-20 10:53:18", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("727", "1", "2015-03-20 10:42:19", "2015-03-20 10:42:19", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Core Values:</span></p>\r\n\r\n	  	Â» Delivering promises. Our word is our pledge.\r\n	  	Â» Sustained efforts to enhance quality, customized service and value for money.\r\n	  	Â» Ethical and professional service.\r\n	  	Â» Compliance and respect for all community, environmental and legal requirements.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 10:42:19", "2015-03-20 10:42:19", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("728", "1", "2015-03-20 10:43:14", "2015-03-20 10:43:14", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoin-avenue/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/avenue-small1.jpg\" border=\"none\"></a>\r\nWe are making our villas as affordable as an apartments; we are decided to do this without compromising on the quality of construction.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<a href=\"http://hrd.softons.cu.cc/ongoing-the-exotic/\" target=\"_blank\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/exotic-small2.jpg\" border=\"none\"></a>\r\nThe Exotic is designed especially for discerning consumers who seek true value for their hard earned money.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#fff; font-size:30px;\">Core Values:</span></p>\r\n\r\n	  	Â» Delivering promises. Our word is our pledge.\r\n	  	Â» Sustained efforts to enhance quality, customized service and value for money.\r\n	  	Â» Ethical and professional service.\r\n	  	Â» Compliance and respect for all community, environmental and legal requirements.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 10:43:14", "2015-03-20 10:43:14", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("733", "1", "2015-03-20 10:55:38", "2015-03-20 10:55:38", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n\r\n<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"]\r\n\r\n<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\">\r\n\r\n[/wc_column][/wc_row][/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#fff; font-size:30px;\">Core Values:</span></p>\r\n\r\n	  	Â» Delivering promises. Our word is our pledge.\r\n	  	Â» Sustained efforts to enhance quality, customized service and value for money.\r\n	  	Â» Ethical and professional service.\r\n	  	Â» Compliance and respect for all community, environmental and legal requirements.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 10:55:38", "2015-03-20 10:55:38", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("732", "1", "2015-03-20 10:54:37", "2015-03-20 10:54:37", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-729\" />[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" />[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n\r\n<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" />\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"]\r\n\r\n<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" />\r\n\r\n[/wc_column][/wc_row][/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#fff; font-size:30px;\">Core Values:</span></p>\r\n\r\n	  	Â» Delivering promises. Our word is our pledge.\r\n	  	Â» Sustained efforts to enhance quality, customized service and value for money.\r\n	  	Â» Ethical and professional service.\r\n	  	Â» Compliance and respect for all community, environmental and legal requirements.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#008fcb;\"><b>NANDAAVANA PROPERTIES FINE LIVING, KING SIZE</b></span></h2>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" background_layout=\"light\"]<h3><span style=\"line-height: 35px;\">We make our discerning customers happy by giving them the quality, comfort and facilities through our opulent projects nestled at different locations.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 10:54:37", "2015-03-20 10:54:37", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("736", "1", "2015-03-20 11:01:47", "2015-03-20 11:01:47", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 11:01:47", "2015-03-20 11:01:47", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("735", "1", "2015-03-20 11:00:33", "2015-03-20 11:00:33", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n\r\n<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"]\r\n\r\n<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\">\r\n\r\n[/wc_column][/wc_row][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#fff; font-size:30px;\">Core Values:</span></p>\r\n\r\n	  	Â» Delivering promises. Our word is our pledge.\r\n	  	Â» Sustained efforts to enhance quality, customized service and value for money.\r\n	  	Â» Ethical and professional service.\r\n	  	Â» Compliance and respect for all community, environmental and legal requirements.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\" />[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 11:00:33", "2015-03-20 11:00:33", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("738", "1", "2015-03-20 11:05:47", "2015-03-20 11:05:47", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-transform:uppercase; font-size:25px;\"><strong>Homes for one and all â€“ changing lifestyles for better living.</strong> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 11:05:47", "2015-03-20 11:05:47", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("827", "1", "2015-03-25 10:17:09", "2015-03-25 10:17:09", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/slide4.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:35px; line-height:12px;\">ENQUIRY NOW </span></p> \r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:35px; line-height:12px;\">Reach Us </span></p> \r\n\r\n<strong>Priyaa Construction</strong>\r\n1/445,Gandhi Nagar,\r\nBehind Premier Mill Quarters Belathur\r\nTamil Nadu - 635124\r\n<strong>Mobile</strong> : +91 9443303227, +91 9965830990\r\n<strong>Email</strong> : r.vasu72@yahoo.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2015-03-25 10:17:09", "2015-03-25 10:17:09", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("748", "1", "2015-03-20 11:29:18", "2015-03-20 11:29:18", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/slide4.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">ENQUIRY NOW </span></p> \r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">Reach Us </span></p> \r\n\r\n<strong>Priyaa Construction</strong>\r\n1/445,Gandhi Nagar,\r\nBehind Premier Mill Quarters Belathur\r\nTamil Nadu - 635124\r\n<strong>Mobile</strong> : +91 9443303227, +91 9965830990\r\n<strong>Email</strong> : r.vasu72@yahoo.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2015-03-20 11:29:18", "2015-03-20 11:29:18", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("747", "1", "2015-03-20 11:28:36", "2015-03-20 11:28:36", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/slide4.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">ENQUIRY NOW </span></p> \r\n\r\nWhenever you think to buy luxury villas, permanent as well as temporary, we are always at your service to the fullest extent.\r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\">Reach Us </span></p> \r\n\r\n<strong>Priyaa Construction</strong>\r\n1/445,Gandhi Nagar,\r\nBehind Premier Mill Quarters Belathur\r\nTamil Nadu - 635124\r\n<strong>Mobile</strong> : +91 9443303227, +91 9965830990\r\n<strong>Email</strong> : r.vasu72@yahoo.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2015-03-20 11:28:36", "2015-03-20 11:28:36", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("749", "1", "2015-03-20 11:31:07", "2015-03-20 11:31:07", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 11:31:07", "2015-03-20 11:31:07", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("750", "1", "2015-03-20 11:32:53", "2015-03-20 11:32:53", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; \">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 11:32:53", "2015-03-20 11:32:53", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("751", "1", "2015-03-20 11:34:19", "2015-03-20 11:34:19", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify;\">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify;\">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 11:34:19", "2015-03-20 11:34:19", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("752", "1", "2015-03-20 11:46:17", "2015-03-20 11:46:17", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify;\">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify;\">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 11:46:17", "2015-03-20 11:46:17", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("753", "1", "2015-03-20 11:47:11", "2015-03-20 11:47:11", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify;\">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify;\">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-20 11:47:11", "2015-03-20 11:47:11", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("757", "1", "2015-03-24 11:12:45", "2015-03-24 11:12:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTIONS</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Our Vision</span>\r\n<p style=\"text-align: justify;\">Upgrading lifestyle for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">&nbsp;Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Pricing\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"100\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\">NANDAAVANA PROPERTIES has been one of the leading developers in HOSUR &amp; BANGALORE</span></p>\r\n<p style=\"text-align:center;\">Nandaavana Properties can provide a complete range of amenities to ensure that you enjoy your stay with us. </p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/01/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-24 11:12:45", "2015-03-24 11:12:45", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("758", "1", "2015-03-24 11:14:05", "2015-03-24 11:14:05", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when youÃ¢â‚¬â„¢re looking for a home, youÃ¢â‚¬â„¢re looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Our Vision</span>\r\n<p style=\"text-align: justify;\">Upgrading lifestyle for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">&nbsp;Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Pricing\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"100\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\">NANDAAVANA PROPERTIES has been one of the leading developers in HOSUR &amp; BANGALORE</span></p>\r\n<p style=\"text-align:center;\">Nandaavana Properties can provide a complete range of amenities to ensure that you enjoy your stay with us. </p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/01/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-24 11:14:05", "2015-03-24 11:14:05", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("759", "1", "2015-03-24 11:15:56", "2015-03-24 11:15:56", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Our Vision</span>\r\n<p style=\"text-align: justify;\">Upgrading lifestyle for better living.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">&nbsp;Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#0287bf; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Pricing\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"100\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row][/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\">NANDAAVANA PROPERTIES has been one of the leading developers in HOSUR &amp; BANGALORE</span></p>\r\n<p style=\"text-align:center;\">Nandaavana Properties can provide a complete range of amenities to ensure that you enjoy your stay with us. </p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/01/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-24 11:15:56", "2015-03-24 11:15:56", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("760", "1", "2015-03-24 11:26:48", "2015-03-24 11:26:48", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify;\">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify;\">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-24 11:26:48", "2015-03-24 11:26:48", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("761", "1", "2015-03-24 11:28:18", "2015-03-24 11:28:18", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify;\">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify;\">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-24 11:28:18", "2015-03-24 11:28:18", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("762", "1", "2015-03-24 11:32:02", "2015-03-24 11:32:02", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></strong></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify;\">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify;\">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-24 11:32:02", "2015-03-24 11:32:02", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("763", "1", "2015-03-24 11:36:20", "2015-03-24 11:36:20", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#12ae36; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Our Vision</span>\r\n<p style=\"text-align: justify;\">Upgrading lifestyle for better living.</p>\r\n<span style=\"color:#12ae36; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/mission2.png\">&nbsp;Our Mission</span>\r\n<p style=\"text-align: justify;\">We at Nandaavana Properties strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</p>\r\n<span style=\"color:#12ae36; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#12ae36; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Pricing\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"100\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row]</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\">NANDAAVANA PROPERTIES has been one of the leading developers in HOSUR &amp; BANGALORE</span></p>\r\n<p style=\"text-align:center;\">Nandaavana Properties can provide a complete range of amenities to ensure that you enjoy your stay with us. </p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/01/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-24 11:36:20", "2015-03-24 11:36:20", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("766", "1", "2015-03-24 11:50:08", "2015-03-24 11:50:08", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\" alt=\"\" />Â Vision &amp; Mission</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teeming millions with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n<span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\" alt=\"\" />Â Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance. \r\n\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\" alt=\"\" />Â Our Core Values</span>\r\n\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/corevalue-300x225.png\" alt=\"corevalue\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-765\" />\r\n\r\n\r\n\r\n [/wc_column][/wc_row]</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\">NANDAAVANA PROPERTIES has been one of the leading developers in HOSUR &amp; BANGALORE</span></p>\r\n<p style=\"text-align:center;\">Nandaavana Properties can provide a complete range of amenities to ensure that you enjoy your stay with us. </p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/01/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-24 11:50:08", "2015-03-24 11:50:08", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("764", "1", "2015-03-24 11:40:36", "2015-03-24 11:40:36", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"]\r\n<span style=\"color:#12ae36; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\">&nbsp;Vision & Mission</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teeming millions with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n\r\n<span style=\"color:#12ae36; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance.\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n<span style=\"color:#12ae36; font-size:20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\">&nbsp;Our Core Values</span>\r\n\r\n[wc_skillbar title=\"Afforable Pricing\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Customer Satisfaction\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Innovative Designs\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"Team Work\" percentage=\"100\" color=\"#0287bf\"]\r\n[wc_skillbar title=\"On Time Delivery\" percentage=\"100\" color=\"#0287bf\"]\r\n[/wc_column][/wc_row]</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\">NANDAAVANA PROPERTIES has been one of the leading developers in HOSUR &amp; BANGALORE</span></p>\r\n<p style=\"text-align:center;\">Nandaavana Properties can provide a complete range of amenities to ensure that you enjoy your stay with us. </p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/01/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-24 11:40:36", "2015-03-24 11:40:36", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("768", "1", "2015-03-24 11:52:23", "2015-03-24 11:52:23", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\" alt=\"\">&nbsp;Vision &amp; Mission</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teeming millions with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n<span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\" alt=\"\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance. \r\n\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/quality-policy1.png\" alt=\"\">&nbsp;Our Core Values</span>\r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/CoreValues-295x300.jpg\" alt=\"CoreValues\" width=\"400\"  class=\"alignnone size-medium wp-image-767\" />\r\n\r\n\r\n\r\n [/wc_column][/wc_row]</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\">NANDAAVANA PROPERTIES has been one of the leading developers in HOSUR &amp; BANGALORE</span></p>\r\n<p style=\"text-align:center;\">Nandaavana Properties can provide a complete range of amenities to ensure that you enjoy your stay with us. </p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/01/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-24 11:52:23", "2015-03-24 11:52:23", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("771", "1", "2015-03-25 05:36:33", "2015-03-25 05:36:33", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\" alt=\"\">&nbsp;Vision &amp; Mission</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teeming millions with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n<span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\" alt=\"\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance. \r\n\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/CoreValues-295x300.jpg\" alt=\"CoreValues\" width=\"400\" class=\"alignnone size-medium wp-image-767\">\r\n\r\n\r\n\r\n [/wc_column][/wc_row][/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\">NANDAAVANA PROPERTIES has been one of the leading developers in HOSUR &amp; BANGALORE</span></p>\r\n<p style=\"text-align:center;\">Nandaavana Properties can provide a complete range of amenities to ensure that you enjoy your stay with us. </p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/01/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-25 05:36:33", "2015-03-25 05:36:33", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("777", "1", "2015-03-25 05:43:23", "2015-03-25 05:43:23", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_gallery admin_label=\"Gallery\" gallery_ids=\"778,779,780,781\" fullwidth=\"on\" posts_number=\"4\" show_title_and_caption=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Ongoing Project", "", "trash", "open", "open", "", "ongoing-project", "", "", "2016-03-18 10:29:45", "2016-03-18 10:29:45", "", "0", "http://hrd.softons.cu.cc/?page_id=777", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("782", "1", "2015-03-25 05:43:23", "2015-03-25 05:43:23", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_gallery admin_label=\"Gallery\" gallery_ids=\"778,779,780,781\" fullwidth=\"on\" posts_number=\"4\" show_title_and_caption=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Ongoing Project", "", "inherit", "open", "open", "", "777-revision-v1", "", "", "2015-03-25 05:43:23", "2015-03-25 05:43:23", "", "777", "http://hrd.softons.cu.cc/777-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("783", "1", "2015-03-25 06:04:51", "2015-03-25 06:04:51", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\" alt=\"\">&nbsp;Vision &amp; Mission</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teeming millions with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n<span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\" alt=\"\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">Our motto is Quality, Commitment and Performance. \r\n\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/CoreValues-295x300.jpg\" alt=\"CoreValues\" width=\"400\" class=\"alignnone size-medium wp-image-767\">\r\n\r\n\r\n\r\n [/wc_column][/wc_row]</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\">NANDAAVANA PROPERTIES has been one of the leading developers in HOSUR &amp; BANGALORE</span></p>\r\n<p style=\"text-align:center;\">Nandaavana Properties can provide a complete range of amenities to ensure that you enjoy your stay with us. </p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/01/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-25 06:04:51", "2015-03-25 06:04:51", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("785", "1", "2015-03-25 06:09:30", "2015-03-25 06:09:30", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\" alt=\"\">&nbsp;Vision &amp; Mission</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teeming millions with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n\r\n<span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\" alt=\"\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">We are committed to meet the expectations of our customers, through our Well experienced and established service delivery system, that is sensitive and accommodative to continuous technology up gradation and value analysis.Create world-class eco friendly homes with the highest standards of professionalism, ethics, quality and customer service.\r\n\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/CoreValues-295x300.jpg\" alt=\"CoreValues\" width=\"400\" class=\"alignnone size-medium wp-image-767\">\r\n\r\n\r\n\r\n [/wc_column][/wc_row][/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\">PRIYAA CONSTRUCTION has been one of the leading developers in HOSUR </span></p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/01/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-25 06:09:30", "2015-03-25 06:09:30", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("784", "1", "2015-03-25 06:06:49", "2015-03-25 06:06:49", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\" alt=\"\">&nbsp;Vision &amp; Mission</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teeming millions with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n\r\n<span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\" alt=\"\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">We are committed to meet the expectations of our customers, through our Well experienced and established service delivery system, that is sensitive and accommodative to continuous technology up gradation and value analysis.Create world-class eco friendly homes with the highest standards of professionalism, ethics, quality and customer service.\r\n\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/CoreValues-295x300.jpg\" alt=\"CoreValues\" width=\"400\" class=\"alignnone size-medium wp-image-767\">\r\n\r\n\r\n\r\n [/wc_column][/wc_row]</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:25px; line-height:12px;\">NANDAAVANA PROPERTIES has been one of the leading developers in HOSUR &amp; BANGALORE</span></p>\r\n<p style=\"text-align:center;\">Nandaavana Properties can provide a complete range of amenities to ensure that you enjoy your stay with us. </p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/01/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-25 06:06:49", "2015-03-25 06:06:49", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("786", "1", "2015-03-25 06:10:37", "2015-03-25 06:10:37", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\" alt=\"\">&nbsp;Vision &amp; Mission</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teeming millions with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n\r\n<span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\" alt=\"\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">We are committed to meet the expectations of our customers, through our Well experienced and established service delivery system, that is sensitive and accommodative to continuous technology up gradation and value analysis.Create world-class eco friendly homes with the highest standards of professionalism, ethics, quality and customer service.\r\n\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/CoreValues-295x300.jpg\" alt=\"CoreValues\" width=\"400\" class=\"alignnone size-medium wp-image-767\">\r\n\r\n\r\n\r\n [/wc_column][/wc_row][/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\">PRIYAA CONSTRUCTION has been one of the leading developers in HOSUR </span></p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/01/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-25 06:10:37", "2015-03-25 06:10:37", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("787", "1", "2015-03-25 06:28:19", "2015-03-25 06:28:19", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\" alt=\"\">&nbsp;Client Orientation</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teeming millions with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n\r\n<span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\" alt=\"\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">We are committed to meet the expectations of our customers, through our Well experienced and established service delivery system, that is sensitive and accommodative to continuous technology up gradation and value analysis.Create world-class eco friendly homes with the highest standards of professionalism, ethics, quality and customer service.\r\n\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/CoreValues-295x300.jpg\" alt=\"CoreValues\" width=\"400\" class=\"alignnone size-medium wp-image-767\">\r\n\r\n\r\n\r\n [/wc_column][/wc_row]</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\">PRIYAA CONSTRUCTION has been one of the leading developers in HOSUR </span></p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/01/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-25 06:28:19", "2015-03-25 06:28:19", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("791", "1", "2015-03-25 06:39:23", "2015-03-25 06:39:23", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\" alt=\"\">&nbsp;Client Orientation</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teeming millions with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n\r\n<span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\" alt=\"\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">We are committed to meet the expectations of our customers, through our Well experienced and established service delivery system, that is sensitive and accommodative to continuous technology up gradation and value analysis.Create world-class eco friendly homes with the highest standards of professionalism, ethics, quality and customer service.\r\n\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/CoreValues-295x300.jpg\" alt=\"CoreValues\" width=\"400\" class=\"alignnone size-medium wp-image-767\">\r\n\r\n\r\n\r\n [/wc_column][/wc_row][/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\">PRIYAA CONSTRUCTION has been one of the leading developers in HOSUR </span></p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutusbottom.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-25 06:39:23", "2015-03-25 06:39:23", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("788", "1", "2015-03-25 06:33:41", "2015-03-25 06:33:41", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\" alt=\"\">&nbsp;Client Orientation</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teeming millions with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n\r\n<span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\" alt=\"\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">We are committed to meet the expectations of our customers, through our Well experienced and established service delivery system, that is sensitive and accommodative to continuous technology up gradation and value analysis.Create world-class eco friendly homes with the highest standards of professionalism, ethics, quality and customer service.\r\n\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/CoreValues-295x300.jpg\" alt=\"CoreValues\" width=\"400\" class=\"alignnone size-medium wp-image-767\">\r\n\r\n\r\n\r\n [/wc_column][/wc_row][/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\">PRIYAA CONSTRUCTION has been one of the leading developers in HOSUR </span></p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/01/ABOUTUS-SECTION3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#81d742\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-25 06:33:41", "2015-03-25 06:33:41", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("790", "1", "2015-03-25 06:35:20", "2015-03-25 06:35:20", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\" alt=\"\">&nbsp;Client Orientation</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teeming millions with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n\r\n<span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\" alt=\"\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">We are committed to meet the expectations of our customers, through our Well experienced and established service delivery system, that is sensitive and accommodative to continuous technology up gradation and value analysis.Create world-class eco friendly homes with the highest standards of professionalism, ethics, quality and customer service.\r\n\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/CoreValues-295x300.jpg\" alt=\"CoreValues\" width=\"400\" class=\"alignnone size-medium wp-image-767\">\r\n\r\n\r\n\r\n [/wc_column][/wc_row][/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#d6d6d6\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\">PRIYAA CONSTRUCTION has been one of the leading developers in HOSUR </span></p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutusbottom.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_color=\"#81d742\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-25 06:35:20", "2015-03-25 06:35:20", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("792", "1", "2015-03-25 06:40:09", "2015-03-25 06:40:09", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/testimonial1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Testimonial</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d8d8d8\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\r\n“A very good, informative service. HRD Integrated Manpower Solution got back to me very quickly regarding interviews and offer letters. A much recommended company in IT recruitment.  They kept me up to date with all the details leading up to my offer and acceptance – many thanks to them for a great service.”</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong>  Mr.Durai - Officer HR - KEF Infrastructure India Pvt Ltd., </strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"I have been trying for Software job for the past 2 years. HRD Integrated Manpower Solution helped me to get job in Software Company. They trained me how to get through the interview successfully.\"</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> Mr. Srinivasan - Manager HR - Micro Labs Ltd.,</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"I tried for jobs for so many years and finally I got job in Bangalore according to my skills and experience. HRD Integrated Manpower Solution helps me to get Placement in MNC Company in Bangalore.\"</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> Mr. Punniamoorthy - HR Admin - Jayashree Polymers Pvt Ltd.,</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"The service received has been very good. HRD Integrated Manpower Solution has been in regular contact with me to check my progress. I have been pleased with the regular contact and when I have a query HRD Integrated Manpower Solution have always been there to help.”</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> -Shravan, Chennai</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\r\n“Very Positive! Staffs are always helpful and obliging. Also they found me the exact job that I wanted in the location that I wanted. They also helped my friends to get some suitable jobs”</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> -Siva, Hosur</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.\"</p>\r\n<p style=\"text-align: right; color: #ffffff;\"><strong> - Priya, Bangalore</strong></p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "publish", "open", "open", "", "testimonials", "", "", "2016-03-22 05:12:21", "2016-03-22 05:12:21", "", "0", "http://hrd.softons.cu.cc/?page_id=792", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("793", "1", "2015-03-25 06:40:09", "2015-03-25 06:40:09", "", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2015-03-25 06:40:09", "2015-03-25 06:40:09", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("794", "1", "2015-03-25 06:40:46", "2015-03-25 06:40:46", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/faq-1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"font-size: 25px; font-weight: bold; text-transform:uppercase; color:#12ae36; \">Faq</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#dbdbdb\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"How long does it take to construct a house?\"]This is one of the most common questions about custom home building.  When the final plans are available and the land has been purchassed, we build your home in 6 months and guarantee the closing date upon signing.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"I have land, I wish to develop a home. How do I contact Priyaa Construction?\"]Firstly it is recommended that you receive planning permission for any development you wish to undertake along with Building Regulation drawings, this would then be the time to contact us to enable us to provide you with a competitive quotation based on these drawings and specification.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\" Is my project too large or too small for Priyaa Contruction?\"]We carry out a wide range of building and joinery services starting from jobs such as fitting a single lock or door handle in your property to a multi-million pound building project of any type.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"How long will it take to build my home?\"]That depends on the time of year, site conditions, the style and size of the home, and the availability of materials. From the start of actual construction, we typically complete a home within six to eight months. Remember, no two Priyaa Construction homes are exactly alike, and we take the time and attention to detail needed to construct a top-quality home that youâ€™ll enjoy for years to come. The progress of construction is also dependent on you and how quickly you make decisions that need to be made during the process.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"What insurances and guarantees do Priyaa Construction provide?\"]New build works are normally carry out the works under NHBC or Similar building guarantees. Most projects are also carried out under JCT (or similar) forms of building contract. We possess all the relevant Insurance\'s, which will provide peace of mind when choosing Priyaa Construction Ltd as your contractor, such as Public Liability, Contractors all risks Insurance and Employers Liability Insurance (details available on request).[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"What is Built-up area?\"]The built up area is the calculation of the carpet area plus the thickness of the walls and any balcony space. The built up area is the actual space utilised to build the property.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"â€œSale deedâ€- whatâ€™s that?\"]A sale deed is a document that a seller issues to the buyer, to transfer the ownership of their property. The execution of this document happens shortly after the sales agreement is finalised and all the terms and conditions present in the sales agreements are fulfilled.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"Why should I choose Priyaa Contruction to build by home? \"]At Priyaa Construction, we design a home based on your needs, from the ground up! We build custom homes for those who value true craftsmanship and want a home with a distinct individual personality. Let us show you how combining the finest techniques of construction with innovative design ideas, can create a home thatâ€™s even better than you imagined â€“ one that is uniquely yours.[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section]", "FAQ", "", "trash", "open", "open", "", "faq", "", "", "2016-03-18 10:29:33", "2016-03-18 10:29:33", "", "0", "http://hrd.softons.cu.cc/?page_id=794", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("795", "1", "2015-03-25 06:40:46", "2015-03-25 06:40:46", "[et_pb_section][et_pb_row][/et_pb_row][/et_pb_section]", "FAQ", "", "inherit", "open", "open", "", "794-revision-v1", "", "", "2015-03-25 06:40:46", "2015-03-25 06:40:46", "", "794", "http://hrd.softons.cu.cc/794-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("796", "1", "2015-03-25 06:40:51", "2015-03-25 06:40:51", "[et_pb_section][et_pb_row][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2015-03-25 06:40:51", "2015-03-25 06:40:51", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("797", "1", "2016-03-22 05:00:38", "2016-03-22 05:00:38", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/testimonial1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Testimonial</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d8d8d8\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\n“A very good, informative service. HRD Integrated Manpower Solution got back to me very quickly regarding interviews and offer letters. A much recommended company in IT recruitment.  They kept me up to date with all the details leading up to my offer and acceptance – many thanks to them for a great service.”</p>\n<p style=\"text-align: right; color: #ffffff;\"><strong>  Mr.Durai - Officer HR - KEF Infrastructure India Pvt Ltd., </strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"I have been trying for Software job for the past 2 years. HRD Integrated Manpower Solution helped me to get job in Software Company. They trained me how to get through the interview successfully.\"</p>\n<p style=\"text-align: right; color: #ffffff;\"><strong> - Arjun, Chennai</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"I tried for jobs for so many years and finally I got job in Bangalore according to my skills and experience. HRD Integrated Manpower Solution helps me to get Placement in MNC Company in Bangalore.\"</p>\n<p style=\"text-align: right; color: #ffffff;\"><strong> -Rhonak, Bangalore</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"The service received has been very good. HRD Integrated Manpower Solution has been in regular contact with me to check my progress. I have been pleased with the regular contact and when I have a query HRD Integrated Manpower Solution have always been there to help.”</p>\n<p style=\"text-align: right; color: #ffffff;\"><strong> -Shravan, Chennai</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\n“Very Positive! Staffs are always helpful and obliging. Also they found me the exact job that I wanted in the location that I wanted. They also helped my friends to get some suitable jobs”</p>\n<p style=\"text-align: right; color: #ffffff;\"><strong> -Siva, Hosur</strong></p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align: justify; color: #ffffff;\">\"HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.\"</p>\n<p style=\"text-align: right; color: #ffffff;\"><strong> - Priya, Bangalore</strong></p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-autosave-v1", "", "", "2016-03-22 05:00:38", "2016-03-22 05:00:38", "", "792", "http://hrd.softons.cu.cc/792-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("988", "1", "2016-03-16 06:58:33", "2016-03-16 06:58:33", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/testimonial.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#8224e3; font-size:35px; line-height:12px;\">Testimonial</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d8d8d8\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#0299cc\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:justify;\">HRD Integrated Manpower Solution Places right candidate in right job. As per their Vision they carry out the recruitment process.I feel very happy as my desire to work in Software job came true by HRD.</p>\r\n                                                                                               -Priya, Bangalore[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2016-03-16 06:58:33", "2016-03-16 06:58:33", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("799", "1", "2015-03-25 06:51:50", "2015-03-25 06:51:50", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Testimonials.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2015-03-25 06:51:50", "2015-03-25 06:51:50", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("800", "1", "2015-03-26 04:37:27", "2015-03-26 04:37:27", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/faq-1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"font-size: 25px; font-weight: bold; text-transform:uppercase; color:#12ae36; \">Faq</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#dbdbdb\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"How long does it take to construct a house?\"]This is one of the most common questions about custom home building.  When the final plans are available and the land has been purchassed, we build your home in 6 months and guarantee the closing date upon signing.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"I have land, I wish to develop a home. How do I contact Priyaa Construction?\"]Firstly it is recommended that you receive planning permission for any development you wish to undertake along with Building Regulation drawings, this would then be the time to contact us to enable us to provide you with a competitive quotation based on these drawings and specification.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\" Is my project too large or too small for Priyaa Contruction?\"]We carry out a wide range of building and joinery services starting from jobs such as fitting a single lock or door handle in your property to a multi-million pound building project of any type.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"How long will it take to build my home?\"]That depends on the time of year, site conditions, the style and size of the home, and the availability of materials. From the start of actual construction, we typically complete a home within six to eight months. Remember, no two Priyaa Construction homes are exactly alike, and we take the time and attention to detail needed to construct a top-quality home that youâ€™ll enjoy for years to come. The progress of construction is also dependent on you and how quickly you make decisions that need to be made during the process.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"What insurances and guarantees do Priyaa Construction provide?\"]New build works are normally carry out the works under NHBC or Similar building guarantees. Most projects are also carried out under JCT (or similar) forms of building contract. We possess all the relevant Insurance\'s, which will provide peace of mind when choosing Priyaa Construction Ltd as your contractor, such as Public Liability, Contractors all risks Insurance and Employers Liability Insurance (details available on request).[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"What is Built-up area?\"]The built up area is the calculation of the carpet area plus the thickness of the walls and any balcony space. The built up area is the actual space utilised to build the property.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"â€œSale deedâ€- whatâ€™s that?\"]A sale deed is a document that a seller issues to the buyer, to transfer the ownership of their property. The execution of this document happens shortly after the sales agreement is finalised and all the terms and conditions present in the sales agreements are fulfilled.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"Why should I choose Priyaa Contruction to build by home? \"]At Priyaa Construction, we design a home based on your needs, from the ground up! We build custom homes for those who value true craftsmanship and want a home with a distinct individual personality. Let us show you how combining the finest techniques of construction with innovative design ideas, can create a home thatâ€™s even better than you imagined â€“ one that is uniquely yours.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"How do you price a set of plans?\"]When we receive a set of plans to quote we alway bring our first price in at the Priyaa Construction Difference level of finish. At this point we have a meeting to go through finishes and potential changes you would like to make. This allows you to be able to pick and choose the exact finishes you want and also keeping your home in your budget.[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section]", "FAQ", "", "inherit", "open", "open", "", "794-autosave-v1", "", "", "2015-03-26 04:37:27", "2015-03-26 04:37:27", "", "794", "http://hrd.softons.cu.cc/794-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("802", "1", "2015-03-25 06:52:42", "2015-03-25 06:52:42", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/faq-.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][/et_pb_row][/et_pb_section]", "FAQ", "", "inherit", "open", "open", "", "794-revision-v1", "", "", "2015-03-25 06:52:42", "2015-03-25 06:52:42", "", "794", "http://hrd.softons.cu.cc/794-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("803", "1", "2015-03-25 06:54:58", "2015-03-25 06:54:58", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/faq-.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"font-size: 25px; font-weight: bold; text-transform:uppercase; color:#12ae36; \">Faq</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section]", "FAQ", "", "inherit", "open", "open", "", "794-revision-v1", "", "", "2015-03-25 06:54:58", "2015-03-25 06:54:58", "", "794", "http://hrd.softons.cu.cc/794-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("804", "1", "2015-03-25 06:59:42", "2015-03-25 06:59:42", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/faq-.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"font-size: 25px; font-weight: bold; text-transform:uppercase; color:#12ae36; \">Faq</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_toggle admin_label=\"Toggle\" open=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "FAQ", "", "inherit", "open", "open", "", "794-revision-v1", "", "", "2015-03-25 06:59:42", "2015-03-25 06:59:42", "", "794", "http://hrd.softons.cu.cc/794-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("806", "1", "2015-03-25 07:01:03", "2015-03-25 07:01:03", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/faq-1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"font-size: 25px; font-weight: bold; text-transform:uppercase; color:#12ae36; \">Faq</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_toggle admin_label=\"Toggle\" open=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "FAQ", "", "inherit", "open", "open", "", "794-revision-v1", "", "", "2015-03-25 07:01:03", "2015-03-25 07:01:03", "", "794", "http://hrd.softons.cu.cc/794-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("807", "1", "2015-03-25 07:18:35", "2015-03-25 07:18:35", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Testimonials.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]WE ARE GLAD TO BE HERE. WE HAVE BEEN CHERISHING A BLISSFUL LIFE IN OUR HOME SINCE 2013. THANKS TO PRIYAA CONSTRUCTION EFFORTS TO ASSURE OUR HAPPINESS. AT OUR HOME, LIFE IS ALWAYS A BLISSFUL EXPERIENCE.\r\n\r\n-Mr Ravi &amp; Family[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2015-03-25 07:18:35", "2015-03-25 07:18:35", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("808", "1", "2015-03-25 07:23:30", "2015-03-25 07:23:30", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Testimonials.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"font-size: 25px; font-weight: bold; text-transform:uppercase; color:#0287bf; \">Testimionial</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]WE ARE GLAD TO BE HERE. WE HAVE BEEN CHERISHING A BLISSFUL LIFE IN OUR HOME SINCE 2013. THANKS TO PRIYAA CONSTRUCTION EFFORTS TO ASSURE OUR HAPPINESS. AT OUR HOME, LIFE IS ALWAYS A BLISSFUL EXPERIENCE.\r\n\r\n-Mr Ravi &amp; Family[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2015-03-25 07:23:30", "2015-03-25 07:23:30", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("809", "1", "2015-03-25 07:24:51", "2015-03-25 07:24:51", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Testimonials.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"font-size: 25px; font-weight: bold; text-transform:uppercase; color:#0287bf; \">Testimionial</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#eefeff\" background_layout=\"light\" text_orientation=\"left\"]WE ARE GLAD TO BE HERE. WE HAVE BEEN CHERISHING A BLISSFUL LIFE IN OUR HOME SINCE 2013. THANKS TO PRIYAA CONSTRUCTION EFFORTS TO ASSURE OUR HAPPINESS. AT OUR HOME, LIFE IS ALWAYS A BLISSFUL EXPERIENCE.\r\n\r\n-Mr Ravi &amp; Family[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2015-03-25 07:24:51", "2015-03-25 07:24:51", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("810", "1", "2015-03-25 07:26:30", "2015-03-25 07:26:30", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is one recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time, all time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customersâ€™ experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify;\">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify;\">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-25 07:26:30", "2015-03-25 07:26:30", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("811", "1", "2015-03-25 07:26:52", "2015-03-25 07:26:52", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Testimonials.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"font-size: 25px; font-weight: bold; text-transform:uppercase; color:#12ae36; \">Testimionial</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#eefeff\" background_layout=\"light\" text_orientation=\"left\"]WE ARE GLAD TO BE HERE. WE HAVE BEEN CHERISHING A BLISSFUL LIFE IN OUR HOME SINCE 2013. THANKS TO PRIYAA CONSTRUCTION EFFORTS TO ASSURE OUR HAPPINESS. AT OUR HOME, LIFE IS ALWAYS A BLISSFUL EXPERIENCE.\r\n\r\n-Mr Ravi &amp; Family[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2015-03-25 07:26:52", "2015-03-25 07:26:52", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("812", "1", "2015-03-25 07:27:38", "2015-03-25 07:27:38", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Testimonials.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"font-size: 25px; font-weight: bold; text-transform:uppercase; color:#12ae36; \">Testimionial</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]WE ARE GLAD TO BE HERE. WE HAVE BEEN CHERISHING A BLISSFUL LIFE IN OUR HOME SINCE 2013. THANKS TO PRIYAA CONSTRUCTION EFFORTS TO ASSURE OUR HAPPINESS. AT OUR HOME, LIFE IS ALWAYS A BLISSFUL EXPERIENCE.\r\n\r\n-Mr Ravi &amp; Family[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2015-03-25 07:27:38", "2015-03-25 07:27:38", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("813", "1", "2015-03-25 07:42:09", "2015-03-25 07:42:09", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/faq-1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"font-size: 25px; font-weight: bold; text-transform:uppercase; color:#12ae36; \">Faq</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"I have land I wish to develop how do I contact Hayman Construction?\"]Firstly it is recommended that you receive planning permission for any development you wish to undertake along with Building Regulation drawings, this would then be the time to contact us to enable us to provide you with a competitive quotation based on these drawings and specification.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"I have land I wish to develop how do I contact Hayman Construction?\"]Firstly it is recommended that you receive planning permission for any development you wish to undertake along with Building Regulation drawings, this would then be the time to contact us to enable us to provide you with a competitive quotation based on these drawings and specification.[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section]", "FAQ", "", "inherit", "open", "open", "", "794-revision-v1", "", "", "2015-03-25 07:42:09", "2015-03-25 07:42:09", "", "794", "http://hrd.softons.cu.cc/794-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("814", "1", "2015-03-25 09:01:05", "2015-03-25 09:01:05", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/faq-1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"font-size: 25px; font-weight: bold; text-transform:uppercase; color:#12ae36; \">Faq</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\" I have land I wish to develop how do I contact Priyaa Construction?\"]Firstly it is recommended that you receive planning permission for any development you wish to undertake along with Building Regulation drawings, this would then be the time to contact us to enable us to provide you with a competitive quotation based on these drawings and specification.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\" Is my project too large or too small for Priyaa?\"]We carry out a wide range of building and joinery services starting from jobs such as fitting a single lock or door handle in your property to a multi-million pound building project of any type.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"Do you cover just the Southwest or do you carry out works nationwide?\"]Our work in recent years has been predominantly been in the Devon and Cornwall area, however we would be more than happy to discuss any projects that are out of this area.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"What insurances and guarantees do Priyaa provide?\"]New build works are normally carry out the works under NHBC or Similar building guarantees. Most projects are also carried out under JCT (or similar) forms of building contract. We possess all the relevant Insurance\'s, which will provide peace of mind when choosing Priyaa Construction Ltd as your contractor, such as Public Liability, Contractors all risks Insurance and Employers Liability Insurance (details available on request).[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"What is Built-up area?\"]The built up area is the calculation of the carpet area plus the thickness of the walls and any balcony space. The built up area is the actual space utilised to build the property.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"â€œSale deedâ€- whatâ€™s that?\"]A sale deed is a document that a seller issues to the buyer, to transfer the ownership of their property. The execution of this document happens shortly after the sales agreement is finalised and all the terms and conditions present in the sales agreements are fulfilled.[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section]", "FAQ", "", "inherit", "open", "open", "", "794-revision-v1", "", "", "2015-03-25 09:01:05", "2015-03-25 09:01:05", "", "794", "http://hrd.softons.cu.cc/794-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("815", "1", "2015-03-25 09:02:54", "2015-03-25 09:02:54", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/faq-1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"font-size: 25px; font-weight: bold; text-transform:uppercase; color:#12ae36; \">Faq</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\" I have land I wish to develop how do I contact Priyaa Construction?\"]Firstly it is recommended that you receive planning permission for any development you wish to undertake along with Building Regulation drawings, this would then be the time to contact us to enable us to provide you with a competitive quotation based on these drawings and specification.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\" Is my project too large or too small for Priyaa?\"]We carry out a wide range of building and joinery services starting from jobs such as fitting a single lock or door handle in your property to a multi-million pound building project of any type.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"Do you cover just the Southwest or do you carry out works nationwide?\"]Our work in recent years has been predominantly been in the Devon and Cornwall area, however we would be more than happy to discuss any projects that are out of this area.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"What insurances and guarantees do Priyaa provide?\"]New build works are normally carry out the works under NHBC or Similar building guarantees. Most projects are also carried out under JCT (or similar) forms of building contract. We possess all the relevant Insurance\'s, which will provide peace of mind when choosing Priyaa Construction Ltd as your contractor, such as Public Liability, Contractors all risks Insurance and Employers Liability Insurance (details available on request).[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"What is Built-up area?\"]The built up area is the calculation of the carpet area plus the thickness of the walls and any balcony space. The built up area is the actual space utilised to build the property.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"â€œSale deedâ€- whatâ€™s that?\"]A sale deed is a document that a seller issues to the buyer, to transfer the ownership of their property. The execution of this document happens shortly after the sales agreement is finalised and all the terms and conditions present in the sales agreements are fulfilled.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"In what form can I make payments to the Housing Finance Institution (HFI) ?\"]Payments for fees, charges, and pre-EMI interest should be remitted to the HFI from abroad through normal banking channels or from the Non-Resident (External) Account/Non-Resident (Ordinary) account in India.[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section]", "FAQ", "", "inherit", "open", "open", "", "794-revision-v1", "", "", "2015-03-25 09:02:54", "2015-03-25 09:02:54", "", "794", "http://hrd.softons.cu.cc/794-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("816", "1", "2015-03-25 09:08:13", "2015-03-25 09:08:13", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/faq-1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"font-size: 25px; font-weight: bold; text-transform:uppercase; color:#12ae36; \">Faq</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"How long does it take to construct a house?\"]This is one of the most common questions about custom home building.  When the final plans are available and the land has been purchassed, we build your home in 6 months and guarantee the closing date upon signing.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\" I have land I wish to develop how do I contact Priyaa Construction?\"]Firstly it is recommended that you receive planning permission for any development you wish to undertake along with Building Regulation drawings, this would then be the time to contact us to enable us to provide you with a competitive quotation based on these drawings and specification.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\" Is my project too large or too small for Priyaa?\"]We carry out a wide range of building and joinery services starting from jobs such as fitting a single lock or door handle in your property to a multi-million pound building project of any type.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"Do you cover just the Southwest or do you carry out works nationwide?\"]Our work in recent years has been predominantly been in the Devon and Cornwall area, however we would be more than happy to discuss any projects that are out of this area.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"What insurances and guarantees do Priyaa provide?\"]New build works are normally carry out the works under NHBC or Similar building guarantees. Most projects are also carried out under JCT (or similar) forms of building contract. We possess all the relevant Insurance\'s, which will provide peace of mind when choosing Priyaa Construction Ltd as your contractor, such as Public Liability, Contractors all risks Insurance and Employers Liability Insurance (details available on request).[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"What is Built-up area?\"]The built up area is the calculation of the carpet area plus the thickness of the walls and any balcony space. The built up area is the actual space utilised to build the property.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"â€œSale deedâ€- whatâ€™s that?\"]A sale deed is a document that a seller issues to the buyer, to transfer the ownership of their property. The execution of this document happens shortly after the sales agreement is finalised and all the terms and conditions present in the sales agreements are fulfilled.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"In what form can I make payments to the Housing Finance Institution (HFI) ?\"]Payments for fees, charges, and pre-EMI interest should be remitted to the HFI from abroad through normal banking channels or from the Non-Resident (External) Account/Non-Resident (Ordinary) account in India.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"How do you price a set of plans?\"]When we receive a set of plans to quote we alway bring our first price in at the Priyaa Construction Difference level of finish. At this point we have a meeting to go through finishes and potential changes you would like to make. This allows you to be able to pick and choose the exact finishes you want and also keeping your home in your budget.[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section]", "FAQ", "", "inherit", "open", "open", "", "794-revision-v1", "", "", "2015-03-25 09:08:13", "2015-03-25 09:08:13", "", "794", "http://hrd.softons.cu.cc/794-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("817", "1", "2015-03-25 09:13:37", "2015-03-25 09:13:37", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Testimonials.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"font-size: 25px; font-weight: bold; text-transform:uppercase; color:#12ae36; \">Testimionial</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]WE ARE GLAD TO BE HERE. WE HAVE BEEN CHERISHING A BLISSFUL LIFE IN OUR HOME SINCE 2013. THANKS TO PRIYAA CONSTRUCTION EFFORTS TO ASSURE OUR HAPPINESS. AT OUR HOME, LIFE IS ALWAYS A BLISSFUL EXPERIENCE.\r\n\r\n-Mr Ravi &amp; Family[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]Hi team,\r\nI am really happy that Priyaa Construction is treating me as its own family member . I am impressed by Priyaa Construction\'s flexibility and commitment to the customers.\r\n\r\n-Mr Kumar Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]It\'s my long cherished dream for three years to acquire a flat which has all basic amenities for present trend of lifestyle in affordable budget. Priyaa Construction come with the answer.\r\n\r\n-Mr Josaf Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]I am extremely satisfied with the service level of the sales and marketing team when i purchased apartments in Priyaa Construction.I was given clear picture of the all inclusive cost of the apartments at the time of booking and the response of the team across the organisation is highly commendable.\r\n\r\n-Mr Sivakumar & Family Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]My family is very happy and contented that \'Priyaa Construction\' is the builders for our \'Synergy\' residential apartments at Hosur. Apart from building the apartments,they build cordial relationship and friendship too with the customer in each step. Work is progressing well methodically and systematically at the construction site, since the date of \'bhumi puja\' this year in Jan 2015.\r\n\r\nEagerly waiting to have our beautiful dream home soon built by Landmark construction with their obsession for perfection !...\r\n\r\n-Mr Ramkumar &amp; Family Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]The work was awarded to Priyaa Construction based on competitive tenders and was completed by them in time to our satisfaction. The contractors were found to be time - and quality - conscious and they employed qualified and well trained staff at site....\r\n\r\n-Mr Srithar Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]They are a financially sound organization with adequate Engineering back ground, field staff and construction machinery. \r\n\r\nWe are extremely satisfied with the quality of their work and would recommend them for execution of major projects without hesitation.\r\n\r\n-Mr Rahim Hosur[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2015-03-25 09:13:37", "2015-03-25 09:13:37", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("818", "1", "2015-03-25 09:14:26", "2015-03-25 09:14:26", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Testimonials.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"font-size: 25px; font-weight: bold; text-transform:uppercase; color:#12ae36; \">Testimionial</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d8d8d8\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]WE ARE GLAD TO BE HERE. WE HAVE BEEN CHERISHING A BLISSFUL LIFE IN OUR HOME SINCE 2013. THANKS TO PRIYAA CONSTRUCTION EFFORTS TO ASSURE OUR HAPPINESS. AT OUR HOME, LIFE IS ALWAYS A BLISSFUL EXPERIENCE.\r\n\r\n-Mr Ravi &amp; Family[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]Hi team,\r\nI am really happy that Priyaa Construction is treating me as its own family member . I am impressed by Priyaa Construction\'s flexibility and commitment to the customers.\r\n\r\n-Mr Kumar Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]It\'s my long cherished dream for three years to acquire a flat which has all basic amenities for present trend of lifestyle in affordable budget. Priyaa Construction come with the answer.\r\n\r\n-Mr Josaf Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]I am extremely satisfied with the service level of the sales and marketing team when i purchased apartments in Priyaa Construction.I was given clear picture of the all inclusive cost of the apartments at the time of booking and the response of the team across the organisation is highly commendable.\r\n\r\n-Mr Sivakumar & Family Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]My family is very happy and contented that \'Priyaa Construction\' is the builders for our \'Synergy\' residential apartments at Hosur. Apart from building the apartments,they build cordial relationship and friendship too with the customer in each step. Work is progressing well methodically and systematically at the construction site, since the date of \'bhumi puja\' this year in Jan 2015.\r\n\r\nEagerly waiting to have our beautiful dream home soon built by Landmark construction with their obsession for perfection !...\r\n\r\n-Mr Ramkumar &amp; Family Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]The work was awarded to Priyaa Construction based on competitive tenders and was completed by them in time to our satisfaction. The contractors were found to be time - and quality - conscious and they employed qualified and well trained staff at site....\r\n\r\n-Mr Srithar Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]They are a financially sound organization with adequate Engineering back ground, field staff and construction machinery. \r\n\r\nWe are extremely satisfied with the quality of their work and would recommend them for execution of major projects without hesitation.\r\n\r\n-Mr Rahim Hosur[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2015-03-25 09:14:26", "2015-03-25 09:14:26", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("819", "1", "2015-03-25 09:15:37", "2015-03-25 09:15:37", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/faq-1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"font-size: 25px; font-weight: bold; text-transform:uppercase; color:#12ae36; \">Faq</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#dbdbdb\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"How long does it take to construct a house?\"]This is one of the most common questions about custom home building.  When the final plans are available and the land has been purchassed, we build your home in 6 months and guarantee the closing date upon signing.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\" I have land I wish to develop how do I contact Priyaa Construction?\"]Firstly it is recommended that you receive planning permission for any development you wish to undertake along with Building Regulation drawings, this would then be the time to contact us to enable us to provide you with a competitive quotation based on these drawings and specification.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\" Is my project too large or too small for Priyaa?\"]We carry out a wide range of building and joinery services starting from jobs such as fitting a single lock or door handle in your property to a multi-million pound building project of any type.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"Do you cover just the Southwest or do you carry out works nationwide?\"]Our work in recent years has been predominantly been in the Devon and Cornwall area, however we would be more than happy to discuss any projects that are out of this area.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"What insurances and guarantees do Priyaa provide?\"]New build works are normally carry out the works under NHBC or Similar building guarantees. Most projects are also carried out under JCT (or similar) forms of building contract. We possess all the relevant Insurance\'s, which will provide peace of mind when choosing Priyaa Construction Ltd as your contractor, such as Public Liability, Contractors all risks Insurance and Employers Liability Insurance (details available on request).[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"What is Built-up area?\"]The built up area is the calculation of the carpet area plus the thickness of the walls and any balcony space. The built up area is the actual space utilised to build the property.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"â€œSale deedâ€- whatâ€™s that?\"]A sale deed is a document that a seller issues to the buyer, to transfer the ownership of their property. The execution of this document happens shortly after the sales agreement is finalised and all the terms and conditions present in the sales agreements are fulfilled.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"In what form can I make payments to the Housing Finance Institution (HFI) ?\"]Payments for fees, charges, and pre-EMI interest should be remitted to the HFI from abroad through normal banking channels or from the Non-Resident (External) Account/Non-Resident (Ordinary) account in India.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"How do you price a set of plans?\"]When we receive a set of plans to quote we alway bring our first price in at the Priyaa Construction Difference level of finish. At this point we have a meeting to go through finishes and potential changes you would like to make. This allows you to be able to pick and choose the exact finishes you want and also keeping your home in your budget.[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section]", "FAQ", "", "inherit", "open", "open", "", "794-revision-v1", "", "", "2015-03-25 09:15:37", "2015-03-25 09:15:37", "", "794", "http://hrd.softons.cu.cc/794-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("820", "1", "2015-03-25 09:17:00", "2015-03-25 09:17:00", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Testimonials.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"font-size: 25px; font-weight: bold; text-transform:uppercase; color:#12ae36; \">Testimionial</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d8d8d8\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]WE ARE GLAD TO BE HERE. WE HAVE BEEN CHERISHING A BLISSFUL LIFE IN OUR HOME SINCE 2013. THANKS TO PRIYAA CONSTRUCTION EFFORTS TO ASSURE OUR HAPPINESS. AT OUR HOME, LIFE IS ALWAYS A BLISSFUL EXPERIENCE.\r\n\r\n-Mr Ravi &amp; Family[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]Hi team,\r\nI am really happy that Priyaa Construction is treating me as its own family member . I am impressed by Priyaa Construction\'s flexibility and commitment to the customers.\r\n\r\n-Mr Kumar Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]It\'s my long cherished dream for three years to acquire a flat which has all basic amenities for present trend of lifestyle in affordable budget. Priyaa Construction come with the answer.\r\n\r\n-Mr Josaf Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]I am extremely satisfied with the service level of the sales and marketing team when i purchased apartments in Priyaa Construction.I was given clear picture of the all inclusive cost of the apartments at the time of booking and the response of the team across the organisation is highly commendable.\r\n\r\n-Mr Sivakumar & Family Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]My family is very happy and contented that \'Priyaa Construction\' is the builders for our \'Synergy\' residential apartments at Hosur. Apart from building the apartments,they build cordial relationship and friendship too with the customer in each step. Work is progressing well methodically and systematically at the construction site, since the date of \'bhumi puja\' this year in Jan 2015.\r\n\r\nEagerly waiting to have our beautiful dream home soon built by Landmark construction with their obsession for perfection !...\r\n\r\n-Mr Ramkumar &amp; Family Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]The work was awarded to Priyaa Construction based on competitive tenders and was completed by them in time to our satisfaction. The contractors were found to be time - and quality - conscious and they employed qualified and well trained staff at site....\r\n\r\n-Mr Srithar Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]They are a financially sound organization with adequate Engineering back ground, field staff and construction machinery. We are extremely satisfied with the quality of their work and would recommend them for execution of major projects without hesitation.\r\n\r\n-Mr Rahim Hosur[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2015-03-25 09:17:00", "2015-03-25 09:17:00", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("854", "1", "2015-03-26 04:19:51", "2015-03-26 04:19:51", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Testimonials.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"font-size: 25px; font-weight: bold; text-transform:uppercase; color:#12ae36; \">Testimionial</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d8d8d8\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-transform: lowercase;\">WE ARE GLAD TO BE HERE. WE HAVE BEEN CHERISHING A BLISSFUL LIFE IN OUR HOME SINCE 2013. THANKS TO PRIYAA CONSTRUCTION EFFORTS TO ASSURE OUR HAPPINESS. AT OUR HOME, LIFE IS ALWAYS A BLISSFUL EXPERIENCE</p>\r\n\r\n-Mr Ravi &amp; Family[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]Hi team,\r\nI am really happy that Priyaa Construction is treating me as its own family member . I am impressed by Priyaa Construction\'s flexibility and commitment to the customers.\r\n\r\n-Mr Kumar, Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]It\'s my long cherished dream for three years to acquire a flat which has all basic amenities for present trend of lifestyle in affordable budget. Priyaa Construction come with the answer.\r\n\r\n-Mr Josaf, Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]I am extremely satisfied with the service level of the sales and marketing team when i purchased apartments in Priyaa Construction.I was given clear picture of the all inclusive cost of the apartments at the time of booking and the response of the team across the organisation is highly commendable.\r\n\r\n-Mr Sivakumar &amp; Family Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]My family is very happy and contented that \'Priyaa Construction\' is the builders for our \'Synergy\' residential apartments at Hosur. Apart from building the apartments, they build cordial relationship and friendship too with the customer in each step. Work is progressing well methodically and systematically at the construction site, since the date of \'bhumi puja\' this year in Jan 2015.\r\n\r\nEagerly waiting to have our beautiful dream home soon built by construction with their obsession for perfection\r\n\r\n-Mr Ramkumar &amp; Family Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]The work was awarded to Priyaa Construction based on competitive tenders and was completed by them in time to our satisfaction. The contractors were found to be  on-time and quality conscious and they employed qualified and well trained staff at site....\r\n\r\n-Mr Srithar, Hosur[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2015-03-26 04:19:51", "2015-03-26 04:19:51", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("821", "1", "2015-03-25 09:21:37", "2015-03-25 09:21:37", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Testimonials.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"font-size: 25px; font-weight: bold; text-transform:uppercase; color:#12ae36; \">Testimionial</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d8d8d8\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-transform: lowercase;\">WE ARE GLAD TO BE HERE. WE HAVE BEEN CHERISHING A BLISSFUL LIFE IN OUR HOME SINCE 2013. THANKS TO PRIYAA CONSTRUCTION EFFORTS TO ASSURE OUR HAPPINESS. AT OUR HOME, LIFE IS ALWAYS A BLISSFUL EXPERIENCE</p>\r\n\r\n-Mr Ravi &amp; Family[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]Hi team,\r\nI am really happy that Priyaa Construction is treating me as its own family member . I am impressed by Priyaa Construction\'s flexibility and commitment to the customers.\r\n\r\n-Mr Kumar Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]It\'s my long cherished dream for three years to acquire a flat which has all basic amenities for present trend of lifestyle in affordable budget. Priyaa Construction come with the answer.\r\n\r\n-Mr Josaf Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]I am extremely satisfied with the service level of the sales and marketing team when i purchased apartments in Priyaa Construction.I was given clear picture of the all inclusive cost of the apartments at the time of booking and the response of the team across the organisation is highly commendable.\r\n\r\n-Mr Sivakumar & Family Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]My family is very happy and contented that \'Priyaa Construction\' is the builders for our \'Synergy\' residential apartments at Hosur. Apart from building the apartments,they build cordial relationship and friendship too with the customer in each step. Work is progressing well methodically and systematically at the construction site, since the date of \'bhumi puja\' this year in Jan 2015.\r\n\r\nEagerly waiting to have our beautiful dream home soon built by Landmark construction with their obsession for perfection !...\r\n\r\n-Mr Ramkumar &amp; Family Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]The work was awarded to Priyaa Construction based on competitive tenders and was completed by them in time to our satisfaction. The contractors were found to be time - and quality - conscious and they employed qualified and well trained staff at site....\r\n\r\n-Mr Srithar Hosur[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]They are a financially sound organization with adequate Engineering back ground, field staff and construction machinery. We are extremely satisfied with the quality of their work and would recommend them for execution of major projects without hesitation.\r\n\r\n-Mr Rahim Hosur[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "Testimonials", "", "inherit", "open", "open", "", "792-revision-v1", "", "", "2015-03-25 09:21:37", "2015-03-25 09:21:37", "", "792", "http://hrd.softons.cu.cc/792-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("836", "1", "2015-03-25 11:50:08", "2015-03-25 11:50:08", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\" alt=\"\">&nbsp;Client Orientation</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teeming millions with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n\r\n<span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\" alt=\"\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">We are committed to meet the expectations of our customers, through our Well experienced and established service delivery system, that is sensitive and accommodative to continuous technology up gradation and value analysis.Create world-class eco friendly homes with the highest standards of professionalism, ethics, quality and customer service.\r\n\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/CoreValues-295x300.jpg\" alt=\"CoreValues\" width=\"400\" class=\"alignnone size-medium wp-image-767\">\r\n\r\n\r\n\r\n [/wc_column][/wc_row][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#fff; font-size:25px; line-height:12px;\">PRIYAA CONSTRUCTION has been one of the leading developers in HOSUR </span></p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutusbottom2.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-25 11:50:08", "2015-03-25 11:50:08", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("838", "1", "2015-03-25 11:56:51", "2015-03-25 11:56:51", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\" alt=\"\">&nbsp;Client Orientation</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teeming millions with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n\r\n<span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\" alt=\"\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">We are committed to meet the expectations of our customers, through our Well experienced and established service delivery system, that is sensitive and accommodative to continuous technology up gradation and value analysis.Create world-class eco friendly homes with the highest standards of professionalism, ethics, quality and customer service.\r\n\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/CoreValues-295x300.jpg\" alt=\"CoreValues\" width=\"400\" class=\"alignnone size-medium wp-image-767\">\r\n\r\n\r\n\r\n [/wc_column][/wc_row][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#fff; font-size:25px; line-height:12px;\">PRIYAA CONSTRUCTION has been one of the leading developers in HOSUR </span></p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutusbottom2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-25 11:56:51", "2015-03-25 11:56:51", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("839", "1", "2015-03-25 11:59:55", "2015-03-25 11:59:55", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\" alt=\"\">&nbsp;Client Orientation</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teeming millions with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n\r\n<span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\" alt=\"\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">We are committed to meet the expectations of our customers, through our Well experienced and established service delivery system, that is sensitive and accommodative to continuous technology up gradation and value analysis.Create world-class eco friendly homes with the highest standards of professionalism, ethics, quality and customer service.\r\n\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/CoreValues-295x300.jpg\" alt=\"CoreValues\" width=\"400\" class=\"alignnone size-medium wp-image-767\">\r\n\r\n\r\n\r\n [/wc_column][/wc_row][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#fff; font-size:25px; line-height:12px;\">PRIYAA CONSTRUCTION has been one of the leading developers in HOSUR </span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutusbottom2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-25 11:59:55", "2015-03-25 11:59:55", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("840", "1", "2015-03-25 12:00:26", "2015-03-25 12:00:26", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\" alt=\"\">&nbsp;Client Orientation</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teeming millions with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n\r\n<span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\" alt=\"\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">We are committed to meet the expectations of our customers, through our Well experienced and established service delivery system, that is sensitive and accommodative to continuous technology up gradation and value analysis.Create world-class eco friendly homes with the highest standards of professionalism, ethics, quality and customer service.\r\n\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/CoreValues-295x300.jpg\" alt=\"CoreValues\" width=\"400\" class=\"alignnone size-medium wp-image-767\">\r\n\r\n\r\n\r\n [/wc_column][/wc_row][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#fff; font-size:25px; line-height:12px;\">PRIYAA CONSTRUCTION has been one of the leading developers in HOSUR </span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutusbottom2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-25 12:00:26", "2015-03-25 12:00:26", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("841", "1", "2015-03-25 12:00:59", "2015-03-25 12:00:59", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\" alt=\"\">&nbsp;Client Orientation</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teeming millions with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n\r\n<span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\" alt=\"\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">We are committed to meet the expectations of our customers, through our Well experienced and established service delivery system, that is sensitive and accommodative to continuous technology up gradation and value analysis.Create world-class eco friendly homes with the highest standards of professionalism, ethics, quality and customer service.\r\n\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/CoreValues-295x300.jpg\" alt=\"CoreValues\" width=\"400\" class=\"alignnone size-medium wp-image-767\">\r\n\r\n\r\n\r\n [/wc_column][/wc_row][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#fff; font-size:25px; line-height:12px;\">PRIYAA CONSTRUCTION has been one of the leading developers in HOSUR </span></p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutusbottom2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-25 12:00:59", "2015-03-25 12:00:59", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("844", "1", "2015-03-25 12:32:10", "2015-03-25 12:32:10", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/vision12.png\" alt=\"\">&nbsp;Client Orientation</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teeming millions with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n\r\n<span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/Quality_Policy_icon.png\" alt=\"\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">We are committed to meet the expectations of our customers, through our Well experienced and established service delivery system, that is sensitive and accommodative to continuous technology up gradation and value analysis.Create world-class eco friendly homes with the highest standards of professionalism, ethics, quality and customer service.\r\n\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/CoreValues-295x300.jpg\" alt=\"CoreValues\" width=\"400\" class=\"alignnone size-medium wp-image-767\">\r\n\r\n\r\n\r\n [/wc_column][/wc_row]</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#fff; font-size:25px; line-height:12px;\">PRIYAA CONSTRUCTION has been one of the leading developers in HOSUR </span></p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutusbottom2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-25 12:32:10", "2015-03-25 12:32:10", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("845", "1", "2015-03-26 03:45:34", "2015-03-26 03:45:34", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each clientÃ¢â‚¬â„¢s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/mission1.png\" alt=\"\">&nbsp;Client Orientation</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teeming millions with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n\r\n<span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Quality_Policy_icon.png\" alt=\"\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">We are committed to meet the expectations of our customers, through our Well experienced and established service delivery system, that is sensitive and accommodative to continuous technology up gradation and value analysis.Create world-class eco friendly homes with the highest standards of professionalism, ethics, quality and customer service.\r\n\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/CoreValues-295x300.jpg\" alt=\"CoreValues\" width=\"400\" class=\"alignnone size-medium wp-image-767\">\r\n\r\n\r\n\r\n [/wc_column][/wc_row]</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#fff; font-size:25px; line-height:12px;\">PRIYAA CONSTRUCTION has been one of the leading developers in HOSUR </span></p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutusbottom2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-26 03:45:34", "2015-03-26 03:45:34", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("846", "1", "2015-03-26 03:52:04", "2015-03-26 03:52:04", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutus1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#12ae36; font-size:25px; line-height:12px;\"><strong>PRIYAA CONTRUCTION</strong> - Lets Change <strong>THE WORLD </strong>With <strong>QUALITY CONSTRUCTION</strong></span></p>\r\n<p style=\"text-align: justify;\">At Priyaa Construction, we know that when you are looking for a home, you are looking for a place where you can unwind, entertain, express yourselves and make memories. We work hard to deliver that and much more. Headed by a group of environmentally conscious individuals, we specialize in creating innovative, Eco-friendly designs so you can enjoy a living space that not only looks special but is healthy too.</p>\r\n<p style=\"text-align: justify;\">We provide a better infrastructure which makes you to feel that you are acquiring a home as individual as you are. We pride ourselves on our ability to apply our artistic inspiration to maximize the uniqueness of each site and to create a home that will be an enduring representation of each client\'s dream.</p>\r\n<p style=\"text-align: justify;\">With our efforts and accomplishments being recognized and appreciated, we wish to delight many more customers in the years to come by delivering homes that remains close to their hearts.</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"][wc_row][wc_column size=\"one-half\" position=\"first\"] <span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/mission1.png\" alt=\"\">&nbsp;Client Orientation</span>\r\n<p style=\"text-align: justify;\">Priyaa Construction is not just a name that promises the teaming many with something big. But they make it happen, transforming every man\'s vision into a reality. Something that one has only aspired for, dreamt about, a breathtaking house with greenery, with all amenities, Priyaa Construction devises out space in forms and shapes that you had only shared in your dreams.</p>\r\n\r\n<span style=\"color: #12ae36; font-size: 20px;\"><img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Quality_Policy_icon.png\" alt=\"\">&nbsp;Quality Policy</span>\r\n<p style=\"text-align: justify;\">We are committed to meet the expectations of our customers, through our Well experienced and established service delivery system, that is sensitive and accommodative to continuous technology up gradation and value analysis. We Create world-class eco friendly homes with the highest standards of professionalism, ethics, quality and customer service.\r\n\r\n\r\n[/wc_column][wc_column size=\"one-half\" position=\"last\"] \r\n\r\n<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/CoreValues-295x300.jpg\" alt=\"CoreValues\" width=\"400\" class=\"alignnone size-medium wp-image-767\">\r\n\r\n\r\n\r\n [/wc_column][/wc_row]</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<p style=\"text-align:center;\"><span style=\"color:#fff; font-size:25px; line-height:12px;\">PRIYAA CONSTRUCTION has been one of the leading developers in HOSUR </span></p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_image admin_label=\"Image\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/aboutusbottom2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" sticky=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "open", "open", "", "337-revision-v1", "", "", "2015-03-26 03:52:04", "2015-03-26 03:52:04", "", "337", "http://hrd.softons.cu.cc/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("847", "1", "2015-03-26 04:00:41", "2015-03-26 04:00:41", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides61.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is a recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» Every person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify;\">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-26 04:00:41", "2015-03-26 04:00:41", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("848", "1", "2015-03-26 04:01:25", "2015-03-26 04:01:25", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides61.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is a recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» Every person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n<p style=\"color:#ffffff; font-size:20px; text-align:justify;\">To understand your deepest desires\r\nYou, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify;\">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-26 04:01:25", "2015-03-26 04:01:25", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("849", "1", "2015-03-26 04:02:25", "2015-03-26 04:02:25", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides61.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is a recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» Every person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n<p style=\"color:#ffffff; font-size:20px; text-align:justify;\">To understand your deepest desires You, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify; \">to deliver no matter what the odds\r\nQuality is non-negotiable. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</span>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<span style=\"color:#ffffff; font-size:20px; text-align:justify;\">showcased in a track record of excellence\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact..</span>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-26 04:02:25", "2015-03-26 04:02:25", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("850", "1", "2015-03-26 04:05:11", "2015-03-26 04:05:11", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides61.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is a recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» Every person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n<p style=\"color:#ffffff; font-size:20px; text-align:justify;\">To understand your deepest desires You, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:20px; text-align:justify; \">Quality is non-negotiable, and we deliver it, no matter what the odds are. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:20px; text-align:justify;\">showcased in a track record of excellence,\r\nIntegrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-26 04:05:11", "2015-03-26 04:05:11", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("851", "1", "2015-03-26 04:05:40", "2015-03-26 04:05:40", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides61.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is a recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» Every person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n<p style=\"color:#ffffff; font-size:20px; text-align:justify;\">To understand your deepest desires You, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:20px; text-align:justify; \">Quality is non-negotiable, and we deliver it, no matter what the odds are. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:20px; text-align:justify;\">showcased in a track record of excellence, Integrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-26 04:05:40", "2015-03-26 04:05:40", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("852", "1", "2015-03-26 04:09:00", "2015-03-26 04:09:00", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides61.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is a recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» Every person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n<p style=\"color:#ffffff; font-size:20px; text-align:justify;\">To understand your deepest desires You, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:20px; text-align:justify; \">Quality is non-negotiable, and we deliver it, no matter what the odds are. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">Showcased in a track record of excellence, Integrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-26 04:09:00", "2015-03-26 04:09:00", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("853", "1", "2015-03-26 04:09:50", "2015-03-26 04:09:50", "[et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" parallax_method=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"on\" auto_speed=\"7000\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide21.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/slide3.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/Slides61.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#f4f4f4\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<p style=\"text-align:center;\"><span style=\"color:#0287bf; font-size:35px; line-height:12px;\"></span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/About-us.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHO WE ARE?</span></p>\r\n\r\n<p style=\"text-align:justify;\">Priyaa Constructions is a recognized name in the Hosur real estate industry. Itâ€™s been a name that has been synonymous for Quality homes and aesthetic lifestyles. With construction as its core competency, and delivering on time. Our team of engineers handle all projects right from the Architectural design, Structural and Civil design upto the final finishing of the project including interiors wherever required.\r\n</p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/Mission1.png\" alt=\"\" width=\"50px\">\r\n<p style=\"text-align: left;\"><span style=\"color: #12ae36; font-size: 25px;\">Mission</span></p>\r\n\r\n<p style=\"text-align: justify;\">To deliver reliable &amp; high quality housing and commercials thereby making a difference in the life of every</p>\r\nÂ» Every person and uplifting society benchmarks.\r\nÂ» To deliver value for money.\r\nÂ» To cater to the need of growing population.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#cccccc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/vision.png\" width=\"50px\"><p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">Vision</span></p>\r\n\r\n<p style=\"text-align:justify;\">To be the most preferred &amp; trusted service provider in real estate through consistent delivery of the committed quality through our value and services.\r\n</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:25px;\">WHAT WE DO?</span></p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#bcbcbc\" show_divider=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<iframe width=\"400\" height=\"300\" src=\"https://www.youtube.com/embed/Yqu21vPBylY?rel=0\" frameborder=\"0\" allowfullscreen=\"\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\"><b>We are registered contractors in TWAD board, Southern Railway, Sipcot and SIDCO. We have completed several projects in above departments.</b></span></h3>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h3><span style=\"color:#fff;\">Projects are completed in Timely manner.</span></h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/middle-img.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#fff; text-transform:uppercase;\"><b>Upcoming Projects</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img class=\"alignnone size-medium wp-image-730\" src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg1-300x225.png\" alt=\"bottomimg1\" width=\"300\" height=\"225\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg2-300x225.png\" alt=\"bottomimg2\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<img src=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/11/bottomimg3-300x225.png\" alt=\"bottomimg3\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-734\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#ffffff\" inner_shadow=\"on\" transparent_background=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h2><span style=\"color:#12ae36;\"><b>We at Priyaa Construction strive to enhance the quality of our customer\'s experience by providing each of them their dream home.</b></span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#12ae36\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î‚»\"]<h3><span style=\"color:#fff;\"><b>PASSION</b></span></h3>\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">To understand your deepest desires You, the home owner, is central to everything. To us Customer satisfaction and loyalty are the primary yardsticks in measuring our business performance.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"î˜\"]<h3><span style=\"color:#fff;\"><b>PROMISE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify; \">Quality is non-negotiable, and we deliver it, no matter what the odds are. Stringent adherence to quality systems and processes across every stage ensures benchmark standards.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" icon_color=\"#1e73be\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#eaeaea\" icon_placement=\"top\" animation=\"off\" background_layout=\"dark\" text_orientation=\"center\" font_icon=\"îƒ\"]<h3><span style=\"color:#fff;\"><b>PERFORMANCE</b></span></h3>\r\n\r\n<p style=\"color:#ffffff; font-size:19px; text-align:justify;\">Showcased in a track record of excellence, Integrity is hallowed and its sanctity carefully safeguarded. Fair practice, transparency and uncompromising professionalism are validated at all points of contact.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-03-26 04:09:50", "2015-03-26 04:09:50", "", "22", "http://hrd.softons.cu.cc/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("855", "1", "2015-03-26 04:30:10", "2015-03-26 04:30:10", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/faq-1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"font-size: 25px; font-weight: bold; text-transform:uppercase; color:#12ae36; \">Faq</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#dbdbdb\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"How long does it take to construct a house?\"]This is one of the most common questions about custom home building.  When the final plans are available and the land has been purchassed, we build your home in 6 months and guarantee the closing date upon signing.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"I have land, I wish to develop a home. How do I contact Priyaa Construction?\"]Firstly it is recommended that you receive planning permission for any development you wish to undertake along with Building Regulation drawings, this would then be the time to contact us to enable us to provide you with a competitive quotation based on these drawings and specification.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\" Is my project too large or too small for Priyaa?\"]We carry out a wide range of building and joinery services starting from jobs such as fitting a single lock or door handle in your property to a multi-million pound building project of any type.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"How long will it take to build my home?\"]That depends on the time of year, site conditions, the style and size of the home, and the availability of materials. From the start of actual construction, we typically complete a home within six to eight months. Remember, no two Priyaa Construction homes are exactly alike, and we take the time and attention to detail needed to construct a top-quality home that youâ€™ll enjoy for years to come. The progress of construction is also dependent on you and how quickly you make decisions that need to be made during the process.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"What insurances and guarantees do Priyaa provide?\"]New build works are normally carry out the works under NHBC or Similar building guarantees. Most projects are also carried out under JCT (or similar) forms of building contract. We possess all the relevant Insurance\'s, which will provide peace of mind when choosing Priyaa Construction Ltd as your contractor, such as Public Liability, Contractors all risks Insurance and Employers Liability Insurance (details available on request).[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"What is Built-up area?\"]The built up area is the calculation of the carpet area plus the thickness of the walls and any balcony space. The built up area is the actual space utilised to build the property.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"â€œSale deedâ€- whatâ€™s that?\"]A sale deed is a document that a seller issues to the buyer, to transfer the ownership of their property. The execution of this document happens shortly after the sales agreement is finalised and all the terms and conditions present in the sales agreements are fulfilled.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"In what form can I make payments to the Housing Finance Institution (HFI) ?\"]Payments for fees, charges, and pre-EMI interest should be remitted to the HFI from abroad through normal banking channels or from the Non-Resident (External) Account/Non-Resident (Ordinary) account in India.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"How do you price a set of plans?\"]When we receive a set of plans to quote we alway bring our first price in at the Priyaa Construction Difference level of finish. At this point we have a meeting to go through finishes and potential changes you would like to make. This allows you to be able to pick and choose the exact finishes you want and also keeping your home in your budget.[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section]", "FAQ", "", "inherit", "open", "open", "", "794-revision-v1", "", "", "2015-03-26 04:30:10", "2015-03-26 04:30:10", "", "794", "http://hrd.softons.cu.cc/794-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("857", "1", "2015-03-26 04:47:52", "2015-03-26 04:47:52", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/faq-1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"font-size: 25px; font-weight: bold; text-transform:uppercase; color:#12ae36; \">Faq</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#dbdbdb\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"How long does it take to construct a house?\"]This is one of the most common questions about custom home building.  When the final plans are available and the land has been purchassed, we build your home in 6 months and guarantee the closing date upon signing.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"I have land, I wish to develop a home. How do I contact Priyaa Construction?\"]Firstly it is recommended that you receive planning permission for any development you wish to undertake along with Building Regulation drawings, this would then be the time to contact us to enable us to provide you with a competitive quotation based on these drawings and specification.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\" Is my project too large or too small for Priyaa Contruction?\"]We carry out a wide range of building and joinery services starting from jobs such as fitting a single lock or door handle in your property to a multi-million pound building project of any type.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"How long will it take to build my home?\"]That depends on the time of year, site conditions, the style and size of the home, and the availability of materials. From the start of actual construction, we typically complete a home within six to eight months. Remember, no two Priyaa Construction homes are exactly alike, and we take the time and attention to detail needed to construct a top-quality home that youâ€™ll enjoy for years to come. The progress of construction is also dependent on you and how quickly you make decisions that need to be made during the process.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"What insurances and guarantees do Priyaa Construction provide?\"]New build works are normally carry out the works under NHBC or Similar building guarantees. Most projects are also carried out under JCT (or similar) forms of building contract. We possess all the relevant Insurance\'s, which will provide peace of mind when choosing Priyaa Construction Ltd as your contractor, such as Public Liability, Contractors all risks Insurance and Employers Liability Insurance (details available on request).[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"What is Built-up area?\"]The built up area is the calculation of the carpet area plus the thickness of the walls and any balcony space. The built up area is the actual space utilised to build the property.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"â€œSale deedâ€- whatâ€™s that?\"]A sale deed is a document that a seller issues to the buyer, to transfer the ownership of their property. The execution of this document happens shortly after the sales agreement is finalised and all the terms and conditions present in the sales agreements are fulfilled.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"Why should I choose Priyaa Contruction to build by home? \"]At Priyaa Construction, we design a home based on your needs, from the ground up! We build custom homes for those who value true craftsmanship and want a home with a distinct individual personality. Let us show you how combining the finest techniques of construction with innovative design ideas, can create a home thatâ€™s even better than you imagined â€“ one that is uniquely yours.[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section]", "FAQ", "", "inherit", "open", "open", "", "794-revision-v1", "", "", "2015-03-26 04:47:52", "2015-03-26 04:47:52", "", "794", "http://hrd.softons.cu.cc/794-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("856", "1", "2015-03-26 04:36:22", "2015-03-26 04:36:22", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2015/03/faq-1.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"font-size: 25px; font-weight: bold; text-transform:uppercase; color:#12ae36; \">Faq</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#dbdbdb\" show_divider=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"How long does it take to construct a house?\"]This is one of the most common questions about custom home building.  When the final plans are available and the land has been purchassed, we build your home in 6 months and guarantee the closing date upon signing.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"I have land, I wish to develop a home. How do I contact Priyaa Construction?\"]Firstly it is recommended that you receive planning permission for any development you wish to undertake along with Building Regulation drawings, this would then be the time to contact us to enable us to provide you with a competitive quotation based on these drawings and specification.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\" Is my project too large or too small for Priyaa Contruction?\"]We carry out a wide range of building and joinery services starting from jobs such as fitting a single lock or door handle in your property to a multi-million pound building project of any type.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"How long will it take to build my home?\"]That depends on the time of year, site conditions, the style and size of the home, and the availability of materials. From the start of actual construction, we typically complete a home within six to eight months. Remember, no two Priyaa Construction homes are exactly alike, and we take the time and attention to detail needed to construct a top-quality home that youâ€™ll enjoy for years to come. The progress of construction is also dependent on you and how quickly you make decisions that need to be made during the process.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"What insurances and guarantees do Priyaa provide?\"]New build works are normally carry out the works under NHBC or Similar building guarantees. Most projects are also carried out under JCT (or similar) forms of building contract. We possess all the relevant Insurance\'s, which will provide peace of mind when choosing Priyaa Construction Ltd as your contractor, such as Public Liability, Contractors all risks Insurance and Employers Liability Insurance (details available on request).[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"What is Built-up area?\"]The built up area is the calculation of the carpet area plus the thickness of the walls and any balcony space. The built up area is the actual space utilised to build the property.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"â€œSale deedâ€- whatâ€™s that?\"]A sale deed is a document that a seller issues to the buyer, to transfer the ownership of their property. The execution of this document happens shortly after the sales agreement is finalised and all the terms and conditions present in the sales agreements are fulfilled.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"Why should I choose Priyaa Contruction to build by home? \"]At Priyaa Construction, we design a home based on your needs, from the ground up! We build custom homes for those who value true craftsmanship and want a home with a distinct individual personality. Let us show you how combining the finest techniques of construction with innovative design ideas, can create a home thatâ€™s even better than you imagined â€“ one that is uniquely yours.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" open=\"off\" title=\"How do you price a set of plans?\"]When we receive a set of plans to quote we alway bring our first price in at the Priyaa Construction Difference level of finish. At this point we have a meeting to go through finishes and potential changes you would like to make. This allows you to be able to pick and choose the exact finishes you want and also keeping your home in your budget.[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section]", "FAQ", "", "inherit", "open", "open", "", "794-revision-v1", "", "", "2015-03-26 04:36:22", "2015-03-26 04:36:22", "", "794", "http://hrd.softons.cu.cc/794-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("858", "1", "2015-03-26 04:53:40", "2015-03-26 04:53:40", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_slide background_image=\"http://hrd.softons.cu.cc/wp-content/uploads/2014/12/slide4.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section transparent_background=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:35px; line-height:12px;\">ENQUIRY NOW </span></p> \r\n&nbsp;\r\n[contact-form-7 id=\"307\" title=\"Enquiry Now\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<p style=\"text-align:left;\"><span style=\"color:#12ae36; font-size:35px; line-height:12px;\">Reach Us </span></p> \r\n\r\n<span style=\"font-size:20px;\"><strong>Priyaa Construction</strong></span>\r\n1/445,Gandhi Nagar,\r\nBehind Premier Mill Quarters, Belathur,\r\nTamil Nadu - 635124\r\n<strong>Mobile</strong> : +91 9443303227, +91 9965830990\r\n<strong>Email</strong> : r.vasu72@yahoo.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "inherit", "open", "open", "", "304-revision-v1", "", "", "2015-03-26 04:53:40", "2015-03-26 04:53:40", "", "304", "http://hrd.softons.cu.cc/304-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("866", "1", "2015-03-30 11:05:44", "2015-03-30 11:05:44", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_gallery admin_label=\"Gallery\" fullwidth=\"on\" posts_number=\"6\" show_title_and_caption=\"on\" show_pagination=\"on\" background_layout=\"light\" gallery_ids=\"860,861,862,863,864,865\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Completed Projects", "", "inherit", "open", "open", "", "541-revision-v1", "", "", "2015-03-30 11:05:44", "2015-03-30 11:05:44", "", "541", "http://hrd.softons.cu.cc/541-revision-v1/", "0", "revision", "", "0");

/* INSERT TABLE DATA: wp_term_relationships */
INSERT INTO `wp_term_relationships` VALUES("1", "1", "0");
INSERT INTO `wp_term_relationships` VALUES("185", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("481", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("1073", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("881", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("882", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("1071", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("1070", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("1069", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("1072", "2", "0");

/* INSERT TABLE DATA: wp_term_taxonomy */
INSERT INTO `wp_term_taxonomy` VALUES("1", "1", "category", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("2", "2", "nav_menu", "", "0", "9");

/* INSERT TABLE DATA: wp_terms */
INSERT INTO `wp_terms` VALUES("1", "Uncategorized", "uncategorized", "0");
INSERT INTO `wp_terms` VALUES("2", "Menu", "menu", "0");

/* INSERT TABLE DATA: wp_usermeta */
INSERT INTO `wp_usermeta` VALUES("1", "1", "nickname", "softons");
INSERT INTO `wp_usermeta` VALUES("2", "1", "first_name", "");
INSERT INTO `wp_usermeta` VALUES("3", "1", "last_name", "");
INSERT INTO `wp_usermeta` VALUES("4", "1", "description", "");
INSERT INTO `wp_usermeta` VALUES("5", "1", "rich_editing", "true");
INSERT INTO `wp_usermeta` VALUES("6", "1", "comment_shortcuts", "false");
INSERT INTO `wp_usermeta` VALUES("7", "1", "admin_color", "fresh");
INSERT INTO `wp_usermeta` VALUES("8", "1", "use_ssl", "0");
INSERT INTO `wp_usermeta` VALUES("9", "1", "show_admin_bar_front", "true");
INSERT INTO `wp_usermeta` VALUES("10", "1", "wp_capabilities", "a:1:{s:13:\"administrator\";b:1;}");
INSERT INTO `wp_usermeta` VALUES("11", "1", "wp_user_level", "10");
INSERT INTO `wp_usermeta` VALUES("12", "1", "dismissed_wp_pointers", "wp350_media,wp360_revisions,wp360_locks,wp390_widgets");
INSERT INTO `wp_usermeta` VALUES("13", "1", "show_welcome_panel", "1");
INSERT INTO `wp_usermeta` VALUES("29", "1", "session_tokens", "a:4:{s:64:\"0998c8c5267a6ca9b490a49859c674706032e0799736cea331e2bd3094c1afca\";i:1458733127;s:64:\"04258d2b586233a808f3f03bf317227dfdec2bda0276b83caf2791c169301d13\";i:1458794038;s:64:\"eb1f99a570fac4e8bb472d9ad91590970f979839a36a13edb4fa63b1ce8fbfde\";i:1458814356;s:64:\"4951a6dacc15a71e655d02b5767e33fd34a3f35cdf72f477d004bb801fa9e06c\";i:1458818166;}");
INSERT INTO `wp_usermeta` VALUES("25", "1", "closedpostboxes_page", "a:0:{}");
INSERT INTO `wp_usermeta` VALUES("15", "1", "wp_dashboard_quick_press_last_post_id", "1080");
INSERT INTO `wp_usermeta` VALUES("16", "1", "managenav-menuscolumnshidden", "a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}");
INSERT INTO `wp_usermeta` VALUES("17", "1", "metaboxhidden_nav-menus", "a:5:{i:0;s:8:\"add-post\";i:1;s:11:\"add-project\";i:2;s:12:\"add-post_tag\";i:3;s:20:\"add-project_category\";i:4;s:15:\"add-project_tag\";}");
INSERT INTO `wp_usermeta` VALUES("18", "1", "wp_user-settings", "editor=html&libraryContent=browse&imgsize=full");
INSERT INTO `wp_usermeta` VALUES("19", "1", "wp_user-settings-time", "1458212341");
INSERT INTO `wp_usermeta` VALUES("20", "1", "wp_media_library_mode", "list");
INSERT INTO `wp_usermeta` VALUES("21", "1", "nav_menu_recently_edited", "2");
INSERT INTO `wp_usermeta` VALUES("26", "1", "metaboxhidden_page", "a:5:{i:0;s:12:\"revisionsdiv\";i:1;s:16:\"commentstatusdiv\";i:2;s:11:\"commentsdiv\";i:3;s:7:\"slugdiv\";i:4;s:9:\"authordiv\";}");
INSERT INTO `wp_usermeta` VALUES("30", "1", "closedpostboxes_toplevel_page_wpcf7", "a:0:{}");
INSERT INTO `wp_usermeta` VALUES("31", "1", "metaboxhidden_toplevel_page_wpcf7", "a:0:{}");

/* INSERT TABLE DATA: wp_users */
INSERT INTO `wp_users` VALUES("1", "softons", "$P$BZoQEMwLlogOgm2Hm7R3ciG9.HfYX50", "softons", "info@softons.com", "", "2014-11-14 09:47:06", "", "0", "softons");

SET FOREIGN_KEY_CHECKS = 1;